summaryrefslogtreecommitdiff
path: root/src/gui/widgets/window.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-28 15:46:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-28 16:41:19 +0300
commitf146cd42ce84a08879eb286ecd2ed2aa8ad82300 (patch)
treef689f832f54f361be8cff61deb47c0e32febd486 /src/gui/widgets/window.h
parent409cee51fe11e2495a2741226432666a8702dceb (diff)
downloadplus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.gz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.bz2
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.xz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.zip
fix code style.
Diffstat (limited to 'src/gui/widgets/window.h')
-rw-r--r--src/gui/widgets/window.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h
index 7cf34c67c..6369990bb 100644
--- a/src/gui/widgets/window.h
+++ b/src/gui/widgets/window.h
@@ -555,25 +555,6 @@ class Window : public gcn::Container,
bool isMovable() const
{ return mMovable; }
- /**
- * Sets the window to be opaque or not. An opaque window will draw it's background
- * and it's content. A non opaque window will only draw it's content.
- *
- * @param opaque True if the window should be opaque, false otherwise.
- * @see isOpaque
- */
- void setOpaque(bool opaque)
- { mOpaque = opaque; }
-
- /**
- * Checks if the window is opaque.
- *
- * @return True if the window is opaque, false otherwise.
- * @see setOpaque
- */
- bool isOpaque()
- { return mOpaque; }
-
virtual Rect getChildrenArea();
/**
@@ -626,11 +607,6 @@ class Window : public gcn::Container,
bool mMovable;
/**
- * True if the window is opaque, false otherwise.
- */
- bool mOpaque;
-
- /**
* Holds a drag offset as an x coordinate where the drag of the window
* started if the window is being dragged. It's used to move the window
* correctly when dragged.