summaryrefslogtreecommitdiff
path: root/plugins/PasteIt/src/Options.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 12:21:37 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 12:21:37 +0000
commit7a8e3055b162b2572152ed951ebcefd60182edbc (patch)
tree415d5bc98ce406df04f8e9b19de99a10e1c275a1 /plugins/PasteIt/src/Options.h
parent177c84716db384c8be095219c58d0a68f87101fe (diff)
PasteIt, PopUp, ProfileManager: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1117 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt/src/Options.h')
-rw-r--r--plugins/PasteIt/src/Options.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/plugins/PasteIt/src/Options.h b/plugins/PasteIt/src/Options.h
new file mode 100644
index 0000000000..9e58e44d7f
--- /dev/null
+++ b/plugins/PasteIt/src/Options.h
@@ -0,0 +1,72 @@
+/*
+Paste It plugin
+Copyright (C) 2011 Krzysztof Kral
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation version 2
+of the License.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+#include "PasteToWeb.h"
+
+class WebOptions
+{
+public:
+ WebOptions(int serv);
+ virtual ~WebOptions();
+ virtual WebOptions* Copy();
+ int server;
+ bool isSendFileName;
+ bool isPublicPaste;
+ bool isCombo1;
+ std::list<PasteFormat> combo1Values;
+ std::wstring combo1Desc;
+ bool isPastebin;
+
+ std::list<PasteFormat> formats;
+ std::wstring defFormatId;
+ bool sendFileName;
+ bool publicPaste;
+ std::wstring combo1;
+ std::wstring pastebinUserKey;
+};
+
+class Options
+{
+public:
+ Options();
+ ~Options();
+ static int InitOptions(WPARAM wParam, LPARAM lParam);
+
+ static INT_PTR CALLBACK DlgProcOptsMain(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK DlgProcOptsPages(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK DlgProcOptsConfigure(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK DlgProcOptsLogin(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+
+ static void InitCodepageCB(HWND hwndCB, unsigned int codepage);
+ static void SetCodepageCB(HWND hwndCB, unsigned int codepage);
+ static unsigned int GetCodepageCB(HWND hwndCB, bool errorReport, unsigned int defCp);
+
+ static Options *instance;
+ void Save();
+ void Load();
+
+ int defWeb;
+ unsigned int codepage;
+ bool autoUTF;
+ bool confDlg;
+ bool autoSend;
+ void SetDefWeb(int web);
+ WebOptions* webOptions[PasteToWeb::pages];
+};
+