clearArea
This commit is contained in:
parent
d9f17a17c3
commit
3b66daeaa2
1 changed files with 6 additions and 2 deletions
|
@ -20,7 +20,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: IconButton.hh,v 1.2 2003/08/19 16:13:25 fluxgen Exp $
|
// $Id: IconButton.hh,v 1.3 2003/09/10 21:40:01 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef ICONBUTTON_HH
|
#ifndef ICONBUTTON_HH
|
||||||
#define ICONBUTTON_HH
|
#define ICONBUTTON_HH
|
||||||
|
@ -38,6 +38,9 @@ public:
|
||||||
|
|
||||||
void exposeEvent(XExposeEvent &event);
|
void exposeEvent(XExposeEvent &event);
|
||||||
void clear();
|
void clear();
|
||||||
|
void clearArea(int x, int y,
|
||||||
|
unsigned int width, unsigned int height,
|
||||||
|
bool exposure = false);
|
||||||
void moveResize(int x, int y,
|
void moveResize(int x, int y,
|
||||||
unsigned int width, unsigned int height);
|
unsigned int width, unsigned int height);
|
||||||
void resize(unsigned int width, unsigned int height);
|
void resize(unsigned int width, unsigned int height);
|
||||||
|
@ -45,7 +48,8 @@ public:
|
||||||
void update(FbTk::Subject *subj);
|
void update(FbTk::Subject *subj);
|
||||||
FluxboxWindow &win() { return m_win; }
|
FluxboxWindow &win() { return m_win; }
|
||||||
const FluxboxWindow &win() const { return m_win; }
|
const FluxboxWindow &win() const { return m_win; }
|
||||||
|
protected:
|
||||||
|
void drawText(int x = 0, int y = 0);
|
||||||
private:
|
private:
|
||||||
void setupWindow();
|
void setupWindow();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue