summaryrefslogtreecommitdiff
path: root/libs/gtkmm2/gtk/gtkmm/rc.cc
blob: 7fcb2077644fb47774850b9039db3eecdec9f970 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// Generated by gtkmmproc -- DO NOT MODIFY!

#include <gtkmm/rc.h>
#include <gtkmm/private/rc_p.h>

#include <gtk/gtktypebuiltins.h>
// -*- c++ -*-
/* $Id$ */

/* Copyright 1998-2002 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <glibmm/utility.h>
#include <gtkmm/settings.h>
#include <gtkmm/widget.h>
#include <gtkmm/style.h>
#include <gtk/gtkrc.h>


namespace Gtk
{

void RcStyle::set_name(const Glib::ustring& name)
{
  const Glib::ScopedPtr<char> old_name (gobj()->name);
  gobj()->name = g_strdup(name.c_str());
}

void RcStyle::set_bg_pixmap_name(StateType state, const Glib::ustring& name)
{
  const Glib::ScopedPtr<char> old_name (gobj()->bg_pixmap_name[state]);
  gobj()->bg_pixmap_name[state] = g_strdup(name.c_str());
}

Glib::ustring RcStyle::get_bg_pixmap_name(StateType state) const
{
  if(const char *const name = gobj()->bg_pixmap_name[state])
    return Glib::ustring(name);
  else
    return Glib::ustring();
}

void RcStyle::set_font(const Pango::FontDescription& font_desc)
{
  g_return_if_fail(font_desc.gobj() != 0);

  const Pango::FontDescription old_font_desc (gobj()->font_desc, false);
  gobj()->font_desc = font_desc.gobj_copy();
}

Pango::FontDescription RcStyle::get_font() const
{
  return Pango::FontDescription(gobj()->font_desc, true);
}

void RcStyle::set_color_flags(StateType state, RcFlags flags)
{
  gobj()->color_flags[state] = static_cast<GtkRcFlags>(gobj()->color_flags[state] | flags);
}

void RcStyle::unset_color_flags(StateType state, RcFlags flags)
{
  gobj()->color_flags[state] = static_cast<GtkRcFlags>(gobj()->color_flags[state] & ~flags);
}

RcFlags RcStyle::get_color_flags(StateType state) const
{
  return static_cast<RcFlags>(unsigned(gobj()->color_flags[state]));
}

void RcStyle::set_xthickness(int xthickness)
{
  gobj()->xthickness = xthickness;
}

void RcStyle::set_ythickness(int ythickness)
{
  gobj()->ythickness = ythickness;
}


RC::RC(const Glib::ustring& filename)
{
  //gtk_rc_init();
  gtk_rc_parse(filename.c_str());
}

Glib::RefPtr<Style>
RC::get_style(const Widget &widget)
{
  return Glib::wrap(gtk_rc_get_style(const_cast<GtkWidget*>(widget.gobj())));
}

void
RC::parse_string(const Glib::ustring& rc_string)
{
  gtk_rc_parse_string(const_cast<char*>(rc_string.c_str()));
}


void
RC::add_default_file(const Glib::ustring& filename)
{
  gtk_rc_add_default_file(const_cast<char*>(filename.c_str()));
}

void
RC::set_default_files(const Glib::ArrayHandle<Glib::ustring>& filenames)
{
  gtk_rc_set_default_files(const_cast<char**>(filenames.data()));
}

Glib::ArrayHandle<Glib::ustring>
RC::get_default_files()
{
  return Glib::ArrayHandle<Glib::ustring>(
      const_cast<const char**>(gtk_rc_get_default_files()), Glib::OWNERSHIP_NONE);
}

bool RC::reparse_all()
{
  return gtk_rc_reparse_all();
}

bool RC::reparse_all(const Glib::RefPtr<Settings>& settings, bool force_load)
{
  return gtk_rc_reparse_all_for_settings(settings->gobj(), force_load);
}

void RC::reset_styles(const Glib::RefPtr<Settings>& settings)
{
  gtk_rc_reset_styles(settings->gobj());        
}

Glib::ustring
RC::find_pixmap_in_path(const Glib::RefPtr<Settings>& context, GScanner *scanner, const Glib::ustring& pixmap_file)
{
  return Glib::convert_return_gchar_ptr_to_ustring(
      gtk_rc_find_pixmap_in_path(context->gobj(), scanner, const_cast<char*>(pixmap_file.c_str())));
}

Glib::ustring
RC::find_pixmap_in_path(const Glib::RefPtr<Settings>& context, const Glib::ustring& pixmap_file)
{
  return Glib::convert_return_gchar_ptr_to_ustring(
      gtk_rc_find_pixmap_in_path(context->gobj(), 0 /* see C docs */, const_cast<char*>(pixmap_file.c_str())));
}

Glib::ustring
RC::find_module_in_path(const Glib::ustring& module_file)
{
  return Glib::convert_return_gchar_ptr_to_ustring(
      gtk_rc_find_module_in_path(const_cast<char*>(module_file.c_str())));
}

Glib::ustring
RC::get_theme_dir()
{
  return Glib::convert_return_gchar_ptr_to_ustring(gtk_rc_get_theme_dir());
}

Glib::ustring
RC::get_module_dir()
{
  return Glib::convert_return_gchar_ptr_to_ustring(gtk_rc_get_module_dir());
}

}


namespace
{
} // anonymous namespace

// static
GType Glib::Value<Gtk::RcFlags>::value_type()
{
  return gtk_rc_flags_get_type();
}


namespace Glib
{

Glib::RefPtr<Gtk::RcStyle> wrap(GtkRcStyle* object, bool take_copy)
{
  return Glib::RefPtr<Gtk::RcStyle>( dynamic_cast<Gtk::RcStyle*> (Glib::wrap_auto ((GObject*)(object), take_copy)) );
  //We use dynamic_cast<> in case of multiple inheritance.
}

} /* namespace Glib */


namespace Gtk
{


/* The *_Class implementation: */

const Glib::Class& RcStyle_Class::init()
{
  if(!gtype_) // create the GType if necessary
  {
    // Glib::Class has to know the class init function to clone custom types.
    class_init_func_ = &RcStyle_Class::class_init_function;

    // This is actually just optimized away, apparently with no harm.
    // Make sure that the parent type has been created.
    //CppClassParent::CppObjectType::get_type();

    // Create the wrapper type, with the same class/instance size as the base type.
    register_derived_type(gtk_rc_style_get_type());

    // Add derived versions of interfaces, if the C type implements any interfaces:
  }

  return *this;
}

void RcStyle_Class::class_init_function(void* g_class, void* class_data)
{
  BaseClassType *const klass = static_cast<BaseClassType*>(g_class);
  CppClassParent::class_init_function(klass, class_data);

}


Glib::ObjectBase* RcStyle_Class::wrap_new(GObject* object)
{
  return new RcStyle((GtkRcStyle*)object);
}


/* The implementation: */

GtkRcStyle* RcStyle::gobj_copy()
{
  reference();
  return gobj();
}

RcStyle::RcStyle(const Glib::ConstructParams& construct_params)
:
  Glib::Object(construct_params)
{}

RcStyle::RcStyle(GtkRcStyle* castitem)
:
  Glib::Object((GObject*)(castitem))
{}

RcStyle::~RcStyle()
{}


RcStyle::CppClassType RcStyle::rcstyle_class_; // initialize static member

GType RcStyle::get_type()
{
  return rcstyle_class_.init().get_type();
}

GType RcStyle::get_base_type()
{
  return gtk_rc_style_get_type();
}


RcStyle::RcStyle()
:
  Glib::ObjectBase(0), //Mark this class as gtkmmproc-generated, rather than a custom class, to allow vfunc optimisations.
  Glib::Object(Glib::ConstructParams(rcstyle_class_.init()))
{
  }

Glib::RefPtr<RcStyle> RcStyle::create()
{
  return Glib::RefPtr<RcStyle>( new RcStyle() );
}
Glib::RefPtr<RcStyle> RcStyle::copy() const
{
  return Glib::wrap(gtk_rc_style_copy(const_cast<GtkRcStyle*>(gobj())));
}

Glib::ustring RcStyle::get_name() const
{
  return Glib::convert_const_gchar_ptr_to_ustring(gobj()->name);
}

void RcStyle::set_fg(StateType state, const Gdk::Color& color)
{
  gobj()->fg[state] = *color.gobj();
}

Gdk::Color RcStyle::get_fg(StateType state) const
{
  return Gdk::Color(const_cast<GdkColor*>(&gobj()->fg[state]), true);
}

void RcStyle::set_bg(StateType state, const Gdk::Color& color)
{
  gobj()->bg[state] = *color.gobj();
}

Gdk::Color RcStyle::get_bg(StateType state) const
{
  return Gdk::Color(const_cast<GdkColor*>(&gobj()->bg[state]), true);
}

void RcStyle::set_text(StateType state, const Gdk::Color& color)
{
  gobj()->text[state] = *color.gobj();
}

Gdk::Color RcStyle::get_text(StateType state) const
{
  return Gdk::Color(const_cast<GdkColor*>(&gobj()->text[state]), true);
}

void RcStyle::set_base(StateType state, const Gdk::Color& color)
{
  gobj()->base[state] = *color.gobj();
}

Gdk::Color RcStyle::get_base(StateType state) const
{
  return Gdk::Color(const_cast<GdkColor*>(&gobj()->base[state]), true);
}

int RcStyle::get_xthickness() const
{
  return gobj()->xthickness;
}

int RcStyle::get_ythickness() const
{
  return gobj()->ythickness;
}


} // namespace Gtk