const
This commit is contained in:
parent
14a685819f
commit
4490ea4590
1 changed files with 4 additions and 3 deletions
|
@ -19,7 +19,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: IconBar.hh,v 1.7 2002/08/04 15:55:13 fluxgen Exp $
|
// $Id: IconBar.hh,v 1.8 2002/10/29 15:52:44 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef ICONBAR_HH
|
#ifndef ICONBAR_HH
|
||||||
#define ICONBAR_HH
|
#define ICONBAR_HH
|
||||||
|
@ -60,10 +60,11 @@ public:
|
||||||
Window delIcon(FluxboxWindow *fluxboxwin);
|
Window delIcon(FluxboxWindow *fluxboxwin);
|
||||||
void buttonPressEvent(XButtonEvent *be);
|
void buttonPressEvent(XButtonEvent *be);
|
||||||
FluxboxWindow *findWindow(Window w);
|
FluxboxWindow *findWindow(Window w);
|
||||||
IconBarObj *findIcon(FluxboxWindow *fluxboxwin);
|
IconBarObj *findIcon(FluxboxWindow * const fluxboxwin);
|
||||||
|
const IconBarObj *findIcon(const FluxboxWindow * const fluxboxwin) const;
|
||||||
void exposeEvent(XExposeEvent *ee);
|
void exposeEvent(XExposeEvent *ee);
|
||||||
|
|
||||||
void draw(IconBarObj *obj, int width);
|
void draw(const IconBarObj * const obj, int width) const;
|
||||||
private:
|
private:
|
||||||
typedef std::list<IconBarObj *> IconList;
|
typedef std::list<IconBarObj *> IconList;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue