diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-21 20:25:28 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-21 20:25:28 +0000 |
commit | 3c9026fef3ebe0e80855b51351b5c1bad05d9f0d (patch) | |
tree | 2cd27952146fff32c2e43f1ebd57c790c355dcbd /protocols/Tox/res | |
parent | 518a4b2226ca1904a39dca7a77a5afaa8984c011 (diff) |
Tox:
- fixed own nick changing
- reworked search/add dialog
git-svn-id: http://svn.miranda-ng.org/main/trunk@10268 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/res')
-rw-r--r-- | protocols/Tox/res/resource.rc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/protocols/Tox/res/resource.rc b/protocols/Tox/res/resource.rc index a3e05e5e83..3b801ef909 100644 --- a/protocols/Tox/res/resource.rc +++ b/protocols/Tox/res/resource.rc @@ -121,10 +121,20 @@ BEGIN LTEXT "Tox profile contains your ID and friend list.\r\nYou may create new profile if you never used tox or use existing profile from other tox client.",IDC_STATIC,7,7,221,33
CONTROL "Create new profile",IDC_CREATE_NEW,"Button",BS_AUTORADIOBUTTON,7,43,221,10
CONTROL "Use existing profile",IDC_USE_EXISTING,"Button",BS_AUTORADIOBUTTON,7,55,221,10
- EDITTEXT IDC_PROFILE_PATH,18,67,191,14,ES_AUTOHSCROLL | WS_DISABLED
+ EDITTEXT IDC_CREATE_NEW,18,67,191,14,ES_AUTOHSCROLL | WS_DISABLED
PUSHBUTTON "...",IDC_BROWSE_PROFILE,212,67,16,14,WS_DISABLED
END
+IDD_SEARCH DIALOGEX 0, 0, 109, 113
+STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD | WS_SYSMENU
+EXSTYLE WS_EX_CONTROLPARENT
+FONT 8, "MS Shell Dlg", 400, 0, 0x1
+BEGIN
+ CONTROL "Search via toxme.se",IDC_SEARCH_TOXMESE,"Button",BS_AUTORADIOBUTTON,0,32,109,10
+ EDITTEXT IDC_SEARCH,0,3,109,14,ES_AUTOHSCROLL
+ CONTROL "Add to friend list",IDC_ADDTOLIST,"Button",BS_AUTORADIOBUTTON,0,20,109,10
+END
+
/////////////////////////////////////////////////////////////////////////////
//
@@ -173,6 +183,10 @@ BEGIN HORZGUIDE, 55
HORZGUIDE, 67
END
+
+ IDD_SEARCH, DIALOG
+ BEGIN
+ END
END
#endif // APSTUDIO_INVOKED
|