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
);
52 class wxDatePickerCtrl
;
53 void MakeDateRecent(bool checked
, wxDatePickerCtrl
*picker
);
55 bool IsParsable(const std::string
&dbname
);
56 bool IsBuildable(const std::string
&dbname
);
58 // Determine parsable classes via template specialization
59 template <class RecordT
>
60 inline bool IsParsable()
65 #define HANDLE_PARSER(dbname) \
67 inline bool IsParsable<Barry::dbname>() \
71 ALL_KNOWN_PARSER_TYPES
73 // Determine buildable classes via template specialization
74 template <class RecordT
>
75 inline bool IsBuildable()
80 #define HANDLE_BUILDER(dbname) \
82 inline bool IsBuildable<Barry::dbname>() \
86 ALL_KNOWN_BUILDER_TYPES