diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-17 23:57:44 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-17 23:57:44 +0000 |
commit | 9d0c916a1c22615b25f84b8a219df1f607a110e5 (patch) | |
tree | e7391f4dde1b5a5c01bd3988915428520229b94d /src/test | |
parent | d496cf2407129524c50169a56b6a296afa34dbd4 (diff) |
Test updates
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/dialog.h | 1 | ||||
-rw-r--r-- | src/test/dialog.rc | 1 | ||||
-rw-r--r-- | src/test/w32dtst.cpp | 17 |
3 files changed, 19 insertions, 0 deletions
diff --git a/src/test/dialog.h b/src/test/dialog.h index d70c14c..fe5f467 100644 --- a/src/test/dialog.h +++ b/src/test/dialog.h @@ -25,3 +25,4 @@ #define IDRADIO1 25 #define IDRADIO2 26 #define IDRADIO3 27 +#define IDMENUDIALOG 28 diff --git a/src/test/dialog.rc b/src/test/dialog.rc index 233389c..d655dab 100644 --- a/src/test/dialog.rc +++ b/src/test/dialog.rc @@ -36,6 +36,7 @@ IDMENU MENU { MENUITEM "Load", IDMENULOAD MENUITEM "Save", IDMENUSAVE + MENUITEM "Dialog", IDMENUDIALOG MENUITEM "Quit", IDMENUQUIT } POPUP "Test" diff --git a/src/test/w32dtst.cpp b/src/test/w32dtst.cpp index e940bcd..21074f6 100644 --- a/src/test/w32dtst.cpp +++ b/src/test/w32dtst.cpp @@ -300,6 +300,14 @@ private: switch(cmd) { + case IDMENUDIALOG: + { + Test t; + + t.ShowModal(W32DLib::Common::GetInstance(),m_wnd); + break; + } + case IDMENUQUIT: Dialog::Close(IDCANCEL); break; @@ -396,6 +404,15 @@ int WINAPI WinMain (HINSTANCE hInstance, WriteInt("ro",rd,"int"); WriteStr("ro",rd,"str"); + if (hInstance==W32DLib::Common::GetInstance()) + { + std::cout << "Common::GetInstance() OK" << std::endl; + } + else + { + std::cout << "Common::GetInstance() FAILED" << std::endl; + } + i=t.ShowModal(hInstance,NULL); if (i==IDOK) |