2003-03-25 12:52:54 +00:00
|
|
|
#include <vcl/dialog.hxx>
|
|
|
|
#include <vcl/fixed.hxx>
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
|
|
|
|
namespace desktop
|
|
|
|
{
|
|
|
|
void displayCmdlineHelp( void );
|
2008-05-13 12:13:00 +00:00
|
|
|
#ifndef UNX
|
2003-03-25 12:52:54 +00:00
|
|
|
class CmdlineHelpDialog : public ModalDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CmdlineHelpDialog ( void );
|
|
|
|
|
|
|
|
FixedText m_ftHead;
|
|
|
|
FixedText m_ftLeft;
|
|
|
|
FixedText m_ftRight;
|
|
|
|
FixedText m_ftBottom;
|
|
|
|
OKButton m_btOk;
|
|
|
|
};
|
2008-05-13 12:13:00 +00:00
|
|
|
#endif
|
2003-10-06 13:59:28 +00:00
|
|
|
}
|