diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-04-02 11:05:06 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-04-02 11:05:06 +0000 |
commit | 97136b40d8c4db6d5581016fa3db70475da48b20 (patch) | |
tree | 2caaa4a54bbc9e22cc33898a5785a9d3bfff2834 | |
parent | 2e4f21f0c59d9cf53f339254713b9a8a5e1ed0f1 (diff) |
#85275# added a help button
-rw-r--r-- | dbaccess/source/ui/dlg/indexdialog.cxx | 8 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/indexdialog.hrc | 9 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/indexdialog.src | 14 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/indexdialog.hxx | 8 |
4 files changed, 30 insertions, 9 deletions
diff --git a/dbaccess/source/ui/dlg/indexdialog.cxx b/dbaccess/source/ui/dlg/indexdialog.cxx index d9be2395f..59c906f3b 100644 --- a/dbaccess/source/ui/dlg/indexdialog.cxx +++ b/dbaccess/source/ui/dlg/indexdialog.cxx @@ -2,9 +2,9 @@ * * $RCSfile: indexdialog.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2001-03-30 14:10:22 $ + * last change: $Author: fs $ $Date: 2001-04-02 12:05:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -221,6 +221,7 @@ namespace dbaui ,m_aFieldsLabel (this, ResId(FT_FIELDS)) ,m_pFields(new IndexFieldsControl (this, ResId(CTR_FIELDS),_nMaxColumnsInIndex)) ,m_aClose (this, ResId(PB_CLOSE)) + ,m_aHelp (this, ResId(HB_HELP)) ,m_pIndexes(NULL) ,m_pPreviousSelection(NULL) ,m_xORB(_rxORB) @@ -829,6 +830,9 @@ namespace dbaui /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.5 2001/03/30 14:10:22 oj + * #85298##85297# correct index impl + * * Revision 1.4 2001/03/29 10:04:47 fs * corrected some minor issues * diff --git a/dbaccess/source/ui/dlg/indexdialog.hrc b/dbaccess/source/ui/dlg/indexdialog.hrc index 40dccfa77..7b458d613 100644 --- a/dbaccess/source/ui/dlg/indexdialog.hrc +++ b/dbaccess/source/ui/dlg/indexdialog.hrc @@ -2,9 +2,9 @@ * * $RCSfile: indexdialog.hrc,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: fs $ $Date: 2001-03-16 16:23:09 $ + * last change: $Author: fs $ $Date: 2001-04-02 12:05:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -78,6 +78,8 @@ #define PB_CLOSE 1 +#define HB_HELP 1 + #define ID_INDEX_NEW 1 #define ID_INDEX_DROP 2 @@ -90,6 +92,9 @@ /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.1 2001/03/16 16:23:09 fs + * initial checkin - index design dialog and friends + * * * Revision 1.0 07.03.01 13:10:24 fs ************************************************************************/ diff --git a/dbaccess/source/ui/dlg/indexdialog.src b/dbaccess/source/ui/dlg/indexdialog.src index 040aa263e..f1db733cd 100644 --- a/dbaccess/source/ui/dlg/indexdialog.src +++ b/dbaccess/source/ui/dlg/indexdialog.src @@ -2,9 +2,9 @@ * * $RCSfile: indexdialog.src,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: fs $ $Date: 2001-04-02 09:25:19 $ + * last change: $Author: fs $ $Date: 2001-04-02 12:05:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -351,7 +351,7 @@ ModalDialog DLG_INDEXDESIGN }; PushButton PB_CLOSE { - Pos = MAP_APPFONT ( DIALOG_SIZE_X - BUTTON_SIZE_X - 6, DIALOG_SIZE_Y - BUTTON_SIZE_Y - 6 ) ; + Pos = MAP_APPFONT ( DIALOG_SIZE_X - BUTTON_SIZE_X - 6 - BUTTON_SIZE_X - 6, DIALOG_SIZE_Y - BUTTON_SIZE_Y - 6 ) ; Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y ); SVLook = TRUE; DefButton = TRUE; @@ -376,6 +376,11 @@ ModalDialog DLG_INDEXDESIGN Text[ turkish ] = "~Close"; Text[ arabic ] = "~Close"; }; + HelpButton HB_HELP + { + Pos = MAP_APPFONT ( DIALOG_SIZE_X - BUTTON_SIZE_X - 6, DIALOG_SIZE_Y - BUTTON_SIZE_Y - 6 ) ; + Size = MAP_APPFONT ( BUTTON_SIZE_X, BUTTON_SIZE_Y ); + }; Text[ portuguese ] = "Índices"; Text[ russian ] = "Èíäåêñû"; Text[ greek ] = "Indexes"; @@ -652,6 +657,9 @@ String STR_INDEXDESIGN_DOUBLE_COLUMN_NAME /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.5 2001/04/02 09:25:19 fs + * no translation for the logical index name + * * Revision 1.4 2001/03/29 09:09:53 fs * english texts * diff --git a/dbaccess/source/ui/inc/indexdialog.hxx b/dbaccess/source/ui/inc/indexdialog.hxx index ca982df5b..b92fd0afe 100644 --- a/dbaccess/source/ui/inc/indexdialog.hxx +++ b/dbaccess/source/ui/inc/indexdialog.hxx @@ -2,9 +2,9 @@ * * $RCSfile: indexdialog.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2001-03-30 14:10:22 $ + * last change: $Author: fs $ $Date: 2001-04-02 12:04:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -150,6 +150,7 @@ namespace dbaui FixedText m_aFieldsLabel; IndexFieldsControl* m_pFields; PushButton m_aClose; + HelpButton m_aHelp; OIndexCollection* m_pIndexes; SvLBoxEntry* m_pPreviousSelection; @@ -203,6 +204,9 @@ namespace dbaui /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.3 2001/03/30 14:10:22 oj + * #85298##85297# correct index impl + * * Revision 1.2 2001/03/19 06:02:09 fs * +implCheckPlausibility * |