3 /// Utility functions specific to Barry Desktop
7 Copyright (C) 2009-2012, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYDESKTOP_UTIL_H__
23 #define __BARRYDESKTOP_UTIL_H__
26 #include <barry/barry.h>
28 #define BUTTON_STATE_NORMAL 0
29 #define BUTTON_STATE_FOCUS 1
30 #define BUTTON_STATE_PUSHED 2
32 template <class IteratorT
, class StrFn
>
33 int GetMaxWidth(wxWindow
*win
, IteratorT begin
, IteratorT end
, StrFn sfn
)
36 for( ; begin
!= end(); ++begin
) {
39 win
->GetTextExtent(wxString(sfn(*begin
).c_str(), wxConvUTF8
),
40 &this_width
, &this_height
);
42 max_width
= std::max(max_width
, this_width
);
48 std::string
GetBaseFilename(const std::string
&filename
);
49 wxString
GetImageFilename(const wxString
&filename
);
50 wxString
GetButtonFilename(int id
, int state
);
51 bool IsButtonEnabled(int id
);
53 bool IsParsable(const std::string
&dbname
);
54 bool IsBuildable(const std::string
&dbname
);
56 // Determine parsable classes via template specialization
57 template <class RecordT
>
58 inline bool IsParsable()
63 #define HANDLE_PARSER(dbname) \
65 inline bool IsParsable<Barry::dbname>() \
69 ALL_KNOWN_PARSER_TYPES
71 // Determine buildable classes via template specialization
72 template <class RecordT
>
73 inline bool IsBuildable()
78 #define HANDLE_BUILDER(dbname) \
80 inline bool IsBuildable<Barry::dbname>() \
84 ALL_KNOWN_BUILDER_TYPES