summaryrefslogtreecommitdiffstats
path: root/padmin/source/adddlg.hxx
diff options
context:
space:
mode:
authorPhilipp Lohmann <pl@openoffice.org>2001-06-19 12:47:44 +0000
committerPhilipp Lohmann <pl@openoffice.org>2001-06-19 12:47:44 +0000
commit577273b73fe789196a6de6c6f126a5a169fde011 (patch)
tree9e38845ce92c543e478b87a96a5e3d910f96e695 /padmin/source/adddlg.hxx
parent#88391# be more tolerant when setting the EffectiveValue (diff)
downloadcore-577273b73fe789196a6de6c6f126a5a169fde011.tar.gz
core-577273b73fe789196a6de6c6f126a5a169fde011.zip
#85520# dialogue redesign
Diffstat (limited to 'padmin/source/adddlg.hxx')
-rw-r--r--padmin/source/adddlg.hxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/padmin/source/adddlg.hxx b/padmin/source/adddlg.hxx
index 2c613f3806fe..2dfd85f7852b 100644
--- a/padmin/source/adddlg.hxx
+++ b/padmin/source/adddlg.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: adddlg.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: pl $ $Date: 2001-06-15 15:30:08 $
+ * last change: $Author: pl $ $Date: 2001-06-19 13:47:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -83,6 +83,9 @@
#ifndef _PAD_HELPER_HXX_
#include <helper.hxx>
#endif
+#ifndef _PAD_TITLECTRL_HXX_
+#include <titlectrl.hxx>
+#endif
namespace padmin
{
@@ -93,14 +96,14 @@ namespace DeviceKind { enum type { Printer, Fax, Pdf }; }
class APTabPage : public TabPage
{
+ String m_aTitle;
public:
- APTabPage( Window* pParent, const ResId& rResId )
- : TabPage( pParent, rResId )
- {}
+ APTabPage( Window* pParent, const ResId& rResId );
// returns false if information is incomplete or invalid
virtual bool check() = 0;
virtual void fill( ::psp::PrinterInfo& rInfo ) = 0;
+ const String& getTitle() const { return m_aTitle; }
};
class APChooseDevicePage : public APTabPage
@@ -247,6 +250,7 @@ class AddPrinterDialog : public ModalDialog
PushButton m_aNextPB;
OKButton m_aFinishPB;
FixedLine m_aLine;
+ TitleImage m_aTitleImage;
::psp::PrinterInfo m_aPrinter;