summaryrefslogtreecommitdiff
path: root/desktop/source/app/cmdlinehelp.hxx
blob: 86c3c7162c98f9c830329dff7c3f429d20bc2fb8 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#include <vcl/dialog.hxx>
#include <vcl/fixed.hxx>
#include <vcl/button.hxx>

namespace desktop
{
    void displayCmdlineHelp( OUString const & unknown );
    void displayVersion();
#ifndef UNX
    class CmdlineHelpDialog : public ModalDialog
    {
    public:
        CmdlineHelpDialog ( void );

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

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */