summaryrefslogtreecommitdiff
path: root/plugins/Watrack_MPD/src/options.cpp
blob: a726ef26d2b4c0fdcfbd55ee0b26aa81dc1f75cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright © 2008 sss, chaos.persei
// 
// 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; either version 2
// of the License, or (at your option) any later version.
// 
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

#include "stdafx.h"

class COptWaMpdDlg : public CDlgBase
{
public:
	COptWaMpdDlg() : CDlgBase(g_plugin, IDD_OPT_WA_MPD),
		edit_PORT(this, IDC_PORT), edit_SERVER(this, IDC_SERVER), edit_PASSWORD(this, IDC_PASSWORD)
	{}
	virtual void OnInitDialog() override
	{
		edit_PORT.SetInt(db_get_w(NULL, MODULENAME, "Port", 6600));
		wchar_t *tmp = UniGetContactSettingUtf(NULL, MODULENAME, "Server", L"127.0.0.1");
		edit_SERVER.SetText(tmp);
		mir_free(tmp);
		tmp = UniGetContactSettingUtf(NULL, MODULENAME, "Password", L"");
		edit_PASSWORD.SetText(tmp);
		mir_free(tmp);
	}
	virtual void OnApply() override
	{
		db_set_w(NULL, MODULENAME, "Port", (WORD)edit_PORT.GetInt());
		gbPort = edit_PORT.GetInt();
		db_set_ws(NULL, MODULENAME, "Server", edit_SERVER.GetText());
		mir_wstrcpy(gbHost, edit_SERVER.GetText());
		db_set_ws(NULL, MODULENAME, "Password", edit_PASSWORD.GetText());
		mir_wstrcpy(gbPassword, edit_PASSWORD.GetText());
	}
private:
	CCtrlSpin edit_PORT;
	CCtrlEdit edit_SERVER, edit_PASSWORD;
};


int WaMpdOptInit(WPARAM wParam,LPARAM)
{
	OPTIONSDIALOGPAGE odp = { 0 };
	odp.szTitle.w = LPGENW("Winamp Track");
	odp.szGroup.w = LPGENW("Plugins");
	odp.szTab.w = LPGENW("Watrack MPD");
	odp.flags=ODPF_BOLDGROUPS|ODPF_UNICODE;
	odp.pDialog = new COptWaMpdDlg();
	Options_AddPage(wParam, &odp);
	return 0;
}