aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-13 09:36:12 (GMT)
committerfluxgen <fluxgen>2003-08-13 09:36:12 (GMT)
commit86016331b02ae9480d48404701d81d4e28c2d8a4 (patch)
tree8307e5d120db9be68e7a00eb5d9771ef518e8a27 /src
parent6b12f0c31af4d2f44fe2960dce3183ffd263bafc (diff)
downloadfluxbox-86016331b02ae9480d48404701d81d4e28c2d8a4.zip
fluxbox-86016331b02ae9480d48404701d81d4e28c2d8a4.tar.bz2
added border width
Diffstat (limited to 'src')
-rw-r--r--src/ClockTool.hh4
-rw-r--r--src/ToolbarItem.hh3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/ClockTool.hh b/src/ClockTool.hh
index ceaebae..9dd6d1b 100644
--- a/src/ClockTool.hh
+++ b/src/ClockTool.hh
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: ClockTool.hh,v 1.1 2003/08/11 14:32:39 fluxgen Exp $ 23// $Id: ClockTool.hh,v 1.2 2003/08/13 09:35:38 fluxgen Exp $
24 24
25#ifndef CLOCKTOOL_HH 25#ifndef CLOCKTOOL_HH
26#define CLOCKTOOL_HH 26#define CLOCKTOOL_HH
@@ -57,7 +57,7 @@ public:
57 void hide(); 57 void hide();
58 unsigned int width() const; 58 unsigned int width() const;
59 unsigned int height() const; 59 unsigned int height() const;
60 60 unsigned int borderWidth() const;
61private: 61private:
62 void updateTime(); 62 void updateTime();
63 void update(FbTk::Subject *subj); 63 void update(FbTk::Subject *subj);
diff --git a/src/ToolbarItem.hh b/src/ToolbarItem.hh
index b4087a7..dc60264 100644
--- a/src/ToolbarItem.hh
+++ b/src/ToolbarItem.hh
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: ToolbarItem.hh,v 1.1 2003/08/11 15:44:12 fluxgen Exp $ 23// $Id: ToolbarItem.hh,v 1.2 2003/08/13 09:36:12 fluxgen Exp $
24 24
25#ifndef TOOLBARITEM_HH 25#ifndef TOOLBARITEM_HH
26#define TOOLBARITEM_HH 26#define TOOLBARITEM_HH
@@ -46,6 +46,7 @@ public:
46 virtual void hide() = 0; 46 virtual void hide() = 0;
47 virtual unsigned int width() const = 0; 47 virtual unsigned int width() const = 0;
48 virtual unsigned int height() const = 0; 48 virtual unsigned int height() const = 0;
49 virtual unsigned int borderWidth() const = 0;
49 50
50 void setType(Type type) { m_type = type; } 51 void setType(Type type) { m_type = type; }
51 Type type() const { return m_type; } 52 Type type() const { return m_type; }