repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge the formfield patch from ooo-build
[ooovba.git]
/
desktop
/
source
/
app
/
cmdlinehelp.hxx
blob
ca6424c4d6bca3805f740c29c539cd0fcd0fcda8
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
}