summaryrefslogtreecommitdiff
path: root/desktop/source/app/cmdlinehelp.hxx
blob: 09b44eb958d51ac10a7f6d973f2caeee186d9252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _SV_DIALOG_HXX
#include <vcl/dialog.hxx>
#endif
#ifndef _SV_FIXED_HXX
#include <vcl/fixed.hxx>
#endif
#ifndef _SV_BUTTON_HXX
#include <vcl/button.hxx>
#endif

namespace desktop
{
    void displayCmdlineHelp( void );

    class CmdlineHelpDialog : public ModalDialog
    {
    public:
        CmdlineHelpDialog ( void );

        FixedText	m_ftHead;
        FixedText	m_ftLeft;
        FixedText	m_ftRight;
        FixedText	m_ftBottom;
        OKButton	m_btOk;
    };



}