summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/newhelp.hxx
diff options
context:
space:
mode:
authorPeter Burow <pb@openoffice.org>2001-08-08 07:44:39 +0000
committerPeter Burow <pb@openoffice.org>2001-08-08 07:44:39 +0000
commit732804fd171570e2786b771b85c65cf26111d40d (patch)
tree49317967c18061ac672e5f9bf0525d365184f66e /sfx2/source/appl/newhelp.hxx
parent14cf17facce1a26767631472259e1fc82007b170 (diff)
fix: #89524# Index ComboBox with UserDraw()
Diffstat (limited to 'sfx2/source/appl/newhelp.hxx')
-rw-r--r--sfx2/source/appl/newhelp.hxx16
1 files changed, 13 insertions, 3 deletions
diff --git a/sfx2/source/appl/newhelp.hxx b/sfx2/source/appl/newhelp.hxx
index e570d0d99d..65f60ad7d0 100644
--- a/sfx2/source/appl/newhelp.hxx
+++ b/sfx2/source/appl/newhelp.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: newhelp.hxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: pb $ $Date: 2001-07-14 12:39:25 $
+ * last change: $Author: pb $ $Date: 2001-08-08 08:44:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -164,11 +164,19 @@ public:
// class IndexTabPage_Impl -----------------------------------------------
+class IndexBox_Impl : public ComboBox
+{
+public:
+ IndexBox_Impl( Window* pParent, const ResId& rResId );
+
+ virtual void UserDraw( const UserDrawEvent& rUDEvt );
+};
+
class IndexTabPage_Impl : public TabPage
{
private:
FixedText aExpressionFT;
- ComboBox aIndexCB;
+ IndexBox_Impl aIndexCB;
PushButton aOpenBtn;
Timer aFactoryTimer;
@@ -240,6 +248,7 @@ public:
void SetDoubleClickHdl( const Link& rLink );
void SetFactory( const String& rFactory ) { aFactory = rFactory; }
String GetSelectEntry() const;
+ void ClearPage();
};
// class BookmarksTabPage_Impl -------------------------------------------
@@ -318,6 +327,7 @@ public:
void AddBookmarks( const String& rTitle, const String& rURL );
String GetActiveFactoryTitle() const { return aActiveLB.GetSelectEntry(); }
void UpdateTabControl() { aTabCtrl.Invalidate(); }
+ void ClearSearchPage();
};
// class SfxHelpTextWindow_Impl ------------------------------------------