summaryrefslogtreecommitdiff
path: root/sfx2/source/inc/recfloat.hxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2002-07-18 06:16:47 +0000
committerMathias Bauer <mba@openoffice.org>2002-07-18 06:16:47 +0000
commit9006392560e7ad452ef812eb05b23dd626c60720 (patch)
treef1ff4dce8c489831cbeb7a83361cd4dd718e343d /sfx2/source/inc/recfloat.hxx
parent55ad2c059b90be28b04fe5fbc698899b63b351fc (diff)
#101305#: new slots for recording
Diffstat (limited to 'sfx2/source/inc/recfloat.hxx')
-rw-r--r--sfx2/source/inc/recfloat.hxx95
1 files changed, 95 insertions, 0 deletions
diff --git a/sfx2/source/inc/recfloat.hxx b/sfx2/source/inc/recfloat.hxx
new file mode 100644
index 0000000000..66f85aeefb
--- /dev/null
+++ b/sfx2/source/inc/recfloat.hxx
@@ -0,0 +1,95 @@
+/*************************************************************************
+ *
+ * $RCSfile: recfloat.hxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: mba $ $Date: 2002-07-18 07:14:56 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef _RECFLOAT_HXX
+#define _RECFLOAT_HXX
+
+// includes *******************************************************************
+
+#include "childwin.hxx"
+#include "basedlgs.hxx"
+#include "tbxmgr.hxx"
+
+class SfxRecordingFloatWrapper_Impl : public SfxChildWindow
+{
+public:
+ SfxRecordingFloatWrapper_Impl( Window* pParent ,
+ USHORT nId ,
+ SfxBindings* pBindings ,
+ SfxChildWinInfo* pInfo );
+
+ SFX_DECL_CHILDWINDOW(SfxRecordingFloatWrapper_Impl);
+};
+
+class SfxRecordingFloat_Impl : public SfxFloatingWindow
+{
+ SfxChildWindow* pWrapper;
+ SfxToolBoxManager aTbx;
+public:
+ SfxRecordingFloat_Impl( SfxBindings* pBindings ,
+ SfxChildWindow* pChildWin ,
+ Window* pParent );
+ virtual BOOL Close();
+};
+
+#endif
+
+