summaryrefslogtreecommitdiff
path: root/src/test/dialog.rc
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/dialog.rc')
-rw-r--r--src/test/dialog.rc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/dialog.rc b/src/test/dialog.rc
new file mode 100644
index 0000000..5655da6
--- /dev/null
+++ b/src/test/dialog.rc
@@ -0,0 +1,14 @@
+#include <windows.h>
+#include "dialog.h"
+
+TESTDLG DIALOG 10, 10, 240, 100
+ STYLE WS_POPUP | WS_BORDER CAPTION
+ "Test Dialog"
+ FONT 8,"MS Shell Dlg"
+{
+ LTEXT "Text:", IDSTATIC1, 10, 10, 50, 12
+ EDITTEXT IDTEXT, 50, 10, 100, 12
+ PUSHBUTTON "Try Me!", IDBUTTON, 10, 30, 150, 18
+ AUTOCHECKBOX "Check", IDCHECK, 10,50,150,18
+ PUSHBUTTON "Quit", IDQUIT, 10,70,150,18
+}