X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fbackgroundmgr.h;fp=src%2Fbackgroundmgr.h;h=d3f49a1304541b6f26361559ffe82f3e9865f3b2;hb=7df269f65639c1a862a58649c48331824029128a;hp=3a91537c8a6610071a84b0291e470ed874343bce;hpb=9776c9a12ba53419d34563a5ec57c90e3d6798f4;p=ctsim.git diff --git a/src/backgroundmgr.h b/src/backgroundmgr.h index 3a91537..d3f49a1 100644 --- a/src/backgroundmgr.h +++ b/src/backgroundmgr.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: backgroundmgr.h,v 1.2 2001/02/22 18:22:40 kevin Exp $ +** $Id: backgroundmgr.h,v 1.3 2001/02/23 02:06:02 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -66,11 +66,19 @@ private: typedef std::vector TaskContainer; typedef std::vector GaugeContainer; typedef std::vector StringContainer; + typedef std::vector PositionContainer; + typedef std::vector LabelContainer; TaskContainer m_vecpBackgroundTasks; GaugeContainer m_vecpGauges; StringContainer m_vecpNames; + PositionContainer m_vecpPositions; + LabelContainer m_vecpLabels; + wxSize m_sizeGauge; + wxSize m_sizeLabel; + wxSize m_sizeCell; + wxSize m_sizeBorder; - void OnCloseWindow(wxCloseEvent& event); + void resizeWindow(); public: BackgroundManager (); @@ -82,7 +90,11 @@ public: TaskContainer& getTasks() { return m_vecpBackgroundTasks;} GaugeContainer& getGauges() { return m_vecpGauges;} StringContainer& getNames() { return m_vecpNames;} + PositionContainer& getPositions() { return m_vecpPositions;} + LabelContainer& getLabels() { return m_vecpLabels;} + void OnCloseWindow(wxCloseEvent& event); + DECLARE_EVENT_TABLE() };