summaryrefslogtreecommitdiff
path: root/plugins/Bonsai/FixOptions/list.h
blob: 7143cb0f554a43fd25a01e7234d709229c2c6284 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Bonsai plugin for Miranda IM

Copyright © 2006 Cristian Libotean

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.
*/

#ifndef M_BONSAI_LIST_H
#define M_BONSAI_LIST_H

#define INITIAL_SIZE 20

#include "commonheaders.h"

#define ID_GROUP    1
#define ID_TITLE    2

struct TPluginOptions{
	WCHAR *szPlugin;
	WCHAR *szGroup;
	WCHAR *szTitle;
	
	DWORD pluginHash;
	DWORD groupHash;
	DWORD titleHash;
	
	TPluginOptions(const WCHAR *plugin, const WCHAR *group, const WCHAR *title, DWORD pluginHash, DWORD groupHash, DWORD titleHash)
	{
		szPlugin = _wcsdup(plugin);
		szGroup = _wcsdup(group);
		szTitle = _wcsdup(title);
		this->pluginHash = pluginHash;
		this->groupHash = groupHash;
		this->titleHash = titleHash;
	}
	
	~TPluginOptions()
	{
		free(this->szPlugin);
		free(this->szGroup);
		free(this->szTitle);
	}
};

typedef TPluginOptions *PPluginOptions;

class COptionsList{
	protected:
		PPluginOptions *_plugins;
		int _count;
		int _capacity;
		
		void Enlarge(int increaseAmount);
		void EnsureCapacity();		
	
	public:
		COptionsList(int initialSize = INITIAL_SIZE);
		~COptionsList();

		void Clear();
		
		int Add(const WCHAR *plugin, const WCHAR *group, const WCHAR *title);
		int Remove(int index);
		int Contains(const WCHAR *plugin, const WCHAR *group, const WCHAR *title) const;
		int Index(const WCHAR *plugin, const WCHAR *group, const WCHAR *title) const;
		
		const PPluginOptions operator [](int index);
		
		int Count() const;
		int Capacity() const;
};

extern COptionsList &lstPluginOptions; //list of services

WCHAR *BuildPluginUniqueID(PPluginOptions plugin, WCHAR *out, int size, int type);
WCHAR *GetPluginGroup(PPluginOptions plugin, WCHAR *group, int count);
WCHAR *GetPluginTitle(PPluginOptions plugin, WCHAR *title, int count);
void SavePluginGroup(PPluginOptions plugin, WCHAR *newGroup);
void SavePluginTitle(PPluginOptions plugin, WCHAR *newTitle);

#endif //M_SERVICESLIST_LIST_H