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