diff options
author | Rafael Dominguez <venccsralph@gmail.com> | 2012-07-04 12:23:26 -0430 |
---|---|---|
committer | Rafael Dominguez <venccsralph@gmail.com> | 2012-07-04 12:23:26 -0430 |
commit | 7887eeba65abbc19f912a4c5fc67e9699e3f438b (patch) | |
tree | cf144839a397c5c763a59bde1eb1e9511319fb86 /sfx2/source/dialog/inputdlg.src | |
parent | 40ec7e20e369f241a748808ba85fd5fc34980eb5 (diff) |
Set correct dimensions and positions of inputbox widget.
Change-Id: I31f92f4af90865d8713f50031c08a6fd4498d885
Diffstat (limited to 'sfx2/source/dialog/inputdlg.src')
-rw-r--r-- | sfx2/source/dialog/inputdlg.src | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sfx2/source/dialog/inputdlg.src b/sfx2/source/dialog/inputdlg.src index cece9f887f8c..edd16d698001 100644 --- a/sfx2/source/dialog/inputdlg.src +++ b/sfx2/source/dialog/inputdlg.src @@ -8,3 +8,41 @@ #include "inputdlg.hrc" +ModalDialog DLG_INPUT_BOX +{ + OutputSize = TRUE; + SVLook = TRUE; + Moveable = TRUE; + Closeable = TRUE; + Size = MAP_APPFONT ( 215, 40 ); + + FixedText LABEL_INPUT_TEXT + { + Pos = MAP_APPFONT(5,6); + Size = MAP_APPFONT(80,10); + }; + + Edit EDT_INPUT_FIELD + { + Border = TRUE; + Pos = MAP_APPFONT(90,5); + Size = MAP_APPFONT(120,10); + }; + + PushButton BTN_INPUT_OK + { + Pos = MAP_APPFONT(125,20); + Size = MAP_APPFONT(40,15); + TabStop = TRUE; + DefButton = TRUE; + Text [en-US] = "Accept"; + }; + + PushButton BTN_INPUT_CANCEL + { + Pos = MAP_APPFONT(170,20); + Size = MAP_APPFONT(40,15); + TabStop = TRUE; + Text [en-US] = "Cancel"; + }; +}; |