~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821

« back to all changes in this revision

Viewing changes to src/rxvttoolkit.h

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2006-09-01 14:44:58 UTC
  • mfrom: (1.1.8 upstream) (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060901144458-98hrz8zg01w8a3vy
Tags: 7.9-2
* Edit the comments in the app-defaults file, and disable all settings by
  default. If font autoselection fails, I would prefer to open a new bug
  specifically for that. (Closes: #385481)
* Reorganize and edit README.Debian, pushing as much as possible into FAQ
  format (with resource setting issues first).

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
#endif
186
186
 
187
187
  void set (rxvt_display *disp);
188
 
  void set (rxvt_display *disp, int bitdepth);
 
188
  void select_visual (int bitdepth);
189
189
  void clear ();
190
190
};
191
191
 
236
236
};
237
237
 
238
238
#ifdef USE_XIM
239
 
struct im_watcher : watcher, callback0<void> {
240
 
  template<class O1, class O2>
241
 
  im_watcher (O1 *object, void (O2::*method) ())
242
 
  : callback0<void> (object,method)
 
239
struct im_watcher : watcher, callback<void (void)> {
 
240
  template<class O, class M>
 
241
  im_watcher (O object, M method)
 
242
  : callback<void (void)> (object, method)
243
243
  { }
244
244
 
245
245
  void start (rxvt_display *display)
253
253
};
254
254
#endif
255
255
 
256
 
struct xevent_watcher : watcher, callback1<void, XEvent &> {
 
256
struct xevent_watcher : watcher, callback<void (XEvent &)> {
257
257
  Window window;
258
258
 
259
 
  template<class O1, class O2>
260
 
  xevent_watcher (O1 *object, void (O2::*method) (XEvent &))
261
 
  : callback1<void, XEvent &> (object,method)
 
259
  template<class O, class M>
 
260
  xevent_watcher (O object, M method)
 
261
  : callback<void (XEvent &)> (object, method)
262
262
  { }
263
263
 
264
264
  void start (rxvt_display *display, Window window)