~ubuntu-branches/ubuntu/warty/dasher/warty

« back to all changes in this revision

Viewing changes to Src/Gtk2/gpesettings_store.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2003-06-05 11:10:04 UTC
  • Revision ID: james.westby@ubuntu.com-20030605111004-kqiutbrlvs7td9ic
Tags: upstream-3.2.10
ImportĀ upstreamĀ versionĀ 3.2.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <string>
 
2
 
 
3
#include <X11/Xlib.h>
 
4
#include <X11/Xatom.h>
 
5
#include <X11/Xmd.h>
 
6
 
 
7
#include <gdk/gdkx.h>
 
8
 
 
9
#include <xsettings-client.h>
 
10
 
 
11
#include <stdio.h>
 
12
 
 
13
using namespace std;
 
14
 
 
15
void init_xsettings();
 
16
 
 
17
bool get_bool_option_callback(const std::string& Key, bool *value);
 
18
bool get_long_option_callback(const std::string& Key, long *value);
 
19
bool get_string_option_callback(const std::string& Key, std::string *value);
 
20
  
 
21
void set_bool_option_callback(const std::string& Key, bool Value);
 
22
void set_long_option_callback(const std::string& Key, long Value);
 
23
void set_string_option_callback(const std::string& Key, const std::string& Value);