summaryrefslogtreecommitdiffstats
path: root/kwin/clients/modernsystem/modernsys.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 21:50:33 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 21:50:33 -0600
commit0b6057404f65218182ab27a9483a21065ef61fca (patch)
treeb8b06dfa2deb965bebfbe131a772124e3e693a96 /kwin/clients/modernsystem/modernsys.h
parent43d99cc2477266cb9072e179137f0e8485370b3d (diff)
downloadtdebase-0b6057404f65218182ab27a9483a21065ef61fca.tar.gz
tdebase-0b6057404f65218182ab27a9483a21065ef61fca.zip
Rename kwin to twin (Part 2 of 2)
Diffstat (limited to 'kwin/clients/modernsystem/modernsys.h')
-rw-r--r--kwin/clients/modernsystem/modernsys.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/kwin/clients/modernsystem/modernsys.h b/kwin/clients/modernsystem/modernsys.h
deleted file mode 100644
index 3e0cf02fd..000000000
--- a/kwin/clients/modernsystem/modernsys.h
+++ /dev/null
@@ -1,72 +0,0 @@
-#ifndef __MODSYSTEMCLIENT_H
-#define __MODSYSTEMCLIENT_H
-
-#include <tqbitmap.h>
-#include <kpixmap.h>
-#include <kcommondecoration.h>
-#include <kdecorationfactory.h>
-
-class TQLabel;
-class TQSpacerItem;
-
-namespace ModernSystem {
-
-class ModernSys;
-
-class ModernButton : public KCommonDecorationButton
-{
-public:
- ModernButton(ButtonType type, ModernSys *parent, const char *name);
- void setBitmap(const unsigned char *bitmap);
- virtual void reset(unsigned long changed);
-protected:
-
- virtual void drawButton(TQPainter *p);
- void drawButtonLabel(TQPainter *){;}
- TQBitmap deco;
-};
-
-class ModernSys : public KCommonDecoration
-{
-public:
- ModernSys( KDecorationBridge* b, KDecorationFactory* f );
- ~ModernSys(){;}
-
- virtual TQString visibleName() const;
- virtual TQString defaultButtonsLeft() const;
- virtual TQString defaultButtonsRight() const;
- virtual bool decorationBehaviour(DecorationBehaviour behaviour) const;
- virtual int layoutMetric(LayoutMetric lm, bool respectWindowState = true, const KCommonDecorationButton * = 0) const;
- virtual KCommonDecorationButton *createButton(ButtonType type);
-
- virtual void updateWindowShape();
- virtual void updateCaption();
-
- void init();
-protected:
- void drawRoundFrame(TQPainter &p, int x, int y, int w, int h);
- void paintEvent( TQPaintEvent* );
- void recalcTitleBuffer();
- void reset( unsigned long );
-private:
- TQPixmap titleBuffer;
- TQString oldTitle;
- bool reverse;
-};
-
-class ModernSysFactory : public TQObject, public KDecorationFactory
-{
-public:
- ModernSysFactory();
- virtual ~ModernSysFactory();
- virtual KDecoration* createDecoration( KDecorationBridge* );
- virtual bool reset( unsigned long changed );
- virtual bool supports( Ability ability );
- TQValueList< BorderSize > borderSizes() const;
-private:
- void read_config();
-};
-
-}
-
-#endif