Files
libreoffice/desktop/source/app/cmdlinehelp.hxx

25 lines
551 B
C++
Raw Normal View History

2010-10-27 13:11:31 +01:00
/* -*- 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( void );
#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
}
2010-10-27 13:11:31 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */