]> Dogcows Code - chaz/openbox/blobdiff - util/epist/window.hh
make cycling by window class work properly, was using the app name instead of class
[chaz/openbox] / util / epist / window.hh
index edd126b05064aa710d5a5433d6543a42e1a3c5cd..91cd834ddc47718939fb89ee1749fd8dad6454ee 100644 (file)
@@ -71,7 +71,7 @@ public:
   inline unsigned int desktop() const { return _desktop; }
   inline const std::string &title() const { return _title; }
   inline const std::string &appName() const { return _app_name; }
-  inline const std::string &appClass() const { return _app_name; }
+  inline const std::string &appClass() const { return _app_class; }
   
   inline bool shaded() const { return _shaded; }
   inline bool iconic() const { return _iconic; }
@@ -81,6 +81,12 @@ public:
   void processEvent(const XEvent &e);
 
   void shade(const bool sh) const;
+  void close() const;
+  void raise() const;
+  void lower() const;
+  void iconify() const;
+  void focus() const;
+  void sendTo(unsigned int dest) const;
 
   bool operator == (const XWindow &w) const { return w._window == _window; }
   bool operator == (const Window &w) const { return w == _window; }
This page took 0.019979 seconds and 4 git commands to generate.