xref: /trunk/main/desktop/source/app/cmdlinehelp.hxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1 #include <vcl/dialog.hxx>
2 #include <vcl/fixed.hxx>
3 #ifndef _SV_BUTTON_HXX
4 #include <vcl/button.hxx>
5 #endif
6 
7 namespace desktop
8 {
9     void displayCmdlineHelp( void );
10 #ifndef UNX
11     class CmdlineHelpDialog : public ModalDialog
12     {
13     public:
14         CmdlineHelpDialog ( void );
15 
16         FixedText   m_ftHead;
17         FixedText   m_ftLeft;
18         FixedText   m_ftRight;
19         FixedText   m_ftBottom;
20         OKButton    m_btOk;
21     };
22 #endif
23 }
24