From 8b658a240f6760396744600f0c9c1cff81ea9df7 Mon Sep 17 00:00:00 2001 From: "Daniel M. Duley" Date: Sat, 25 Mar 2000 16:51:32 +0000 Subject: [PATCH] Removing the Be style, as it's incomplete and is replaced by B2 now. Was useful tho as it was the first example of a shaped style :) svn path=/trunk/kdebase/kwin/; revision=44657 --- clients/be/Makefile.am | 20 ---- clients/be/be.desktop | 3 - clients/be/beclient.cpp | 223 ---------------------------------------- clients/be/beclient.h | 38 ------- 4 files changed, 284 deletions(-) delete mode 100644 clients/be/Makefile.am delete mode 100644 clients/be/be.desktop delete mode 100644 clients/be/beclient.cpp delete mode 100644 clients/be/beclient.h diff --git a/clients/be/Makefile.am b/clients/be/Makefile.am deleted file mode 100644 index 7c35100f2b..0000000000 --- a/clients/be/Makefile.am +++ /dev/null @@ -1,20 +0,0 @@ - -INCLUDES = $(all_includes) - -lib_LTLIBRARIES = libkwinbe.la - -libkwinbe_la_SOURCES = beclient.cpp - -METASOURCES = AUTO -noinst_HEADERS = beclient.h - -lnkdir = $(kde_datadir)/kwin/ -lnk_DATA = be.desktop - -EXTRA_DIST = $(lnk_DATA) - -libkwinbe_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -module -rdynamic - -###KMAKE-start (don't edit or delete this block) - -###KMAKE-end diff --git a/clients/be/be.desktop b/clients/be/be.desktop deleted file mode 100644 index f6fa85340c..0000000000 --- a/clients/be/be.desktop +++ /dev/null @@ -1,3 +0,0 @@ -[Desktop Entry] -Name=Be -X-KDE-Library=libkwinbe diff --git a/clients/be/beclient.cpp b/clients/be/beclient.cpp deleted file mode 100644 index f11672affd..0000000000 --- a/clients/be/beclient.cpp +++ /dev/null @@ -1,223 +0,0 @@ -#include "beclient.h" -#include -#include -#include -#include -#include -#include -#include -#include "../../workspace.h" - - -extern "C" -{ - Client *allocate(Workspace *ws, WId w) - { - return(new BeClient(ws, w)); - } -} - - -static const char * size_xpm[] = { -/* width height num_colors chars_per_pixel */ -"16 16 3 1", -/* colors */ -" s None c None", -". c #707070", -"X c white", -/* pixels */ -" ", -" ....... ", -" .XXXXXX ", -" .X .X ", -" .X .X....... ", -" .X .XXXXXXXX ", -" .X .X .X ", -" .X....X .X ", -" .XXXXXX .X ", -" .X .X ", -" .X .X ", -" .X .X ", -" .X........X ", -" .XXXXXXXXXX ", -" ", -" "}; - -static QPixmap* size_pix = 0; -static bool pixmaps_created = FALSE; - -static void create_pixmaps() -{ - if ( pixmaps_created ) - return; - pixmaps_created = true; - size_pix = new QPixmap( size_xpm ); -} - -BeClient::BeClient( Workspace *ws, WId w, QWidget *parent, const char *name ) - : Client( ws, w, parent, name, WResizeNoErase ) -{ - create_pixmaps(); - QGridLayout* g = new QGridLayout( this, 0, 0, 2 ); - g->addRowSpacing(1, 2); - g->setRowStretch( 2, 10 ); - g->addWidget( windowWrapper(), 2, 1 ); - g->addItem( new QSpacerItem( 0, 0, QSizePolicy::Fixed, QSizePolicy::Expanding ) ); - g->addColSpacing(0, 2); - g->addColSpacing(2, 2); - g->addRowSpacing(3, 2); - - - - QHBoxLayout* hb = new QHBoxLayout; - g->addLayout( hb, 0, 1 ); - int fh = QMAX( 16, fontMetrics().lineSpacing()); - titlebar = new QSpacerItem(40, fh, QSizePolicy::Preferred, - QSizePolicy::Minimum ); - hb->addItem( titlebar ); - - hb->addStretch(); -} - - -BeClient::~BeClient() -{ -} - - -void BeClient::resizeEvent( QResizeEvent* e) -{ - Client::resizeEvent( e ); - doShape(); - if ( isVisibleToTLW() && !testWFlags( WNorthWestGravity ) ) { - // manual clearing without the titlebar (we selected WResizeNoErase ) - QPainter p( this ); - QRect t = titlebar->geometry(); - t.setTop( 0 ); - t.setLeft( 0 ); - QRegion r = rect(); - r = r.subtract( t ); - p.setClipRegion( r ); - p.eraseRect( rect() ); - } -} - -/*!\reimp - */ -void BeClient::captionChange( const QString& ) -{ - doShape(); - repaint(); -} - -void BeClient::paintEvent( QPaintEvent* ) -{ - QPainter p( this ); - QRect bar ( 0, 0, titlebar->geometry().right()+1, - titlebar->geometry().bottom() ); - qDrawWinPanel( &p, 0, bar.bottom()+2, width(), height() - bar.bottom()-2, - options->colorGroup(Options::Frame, false)); - qDrawWinPanel( &p, 2, bar.bottom()+4, width()-4, height() - bar.bottom()-6, - options->colorGroup(Options::Frame, true)); - - QRect t = titlebar->geometry(); - - bar.setBottom( bar.bottom() + 3 ); - p.setClipRect( bar ); - bar.setBottom( bar.bottom() + 2 ); - qDrawWinPanel( &p, bar, options->colorGroup(Options::TitleBar, isActive()), - FALSE, &options->colorGroup(Options::TitleBar, isActive()). - brush(QColorGroup::Background)); - p.setClipping( FALSE ); - - p.drawPixmap( t.right() - 20, t.center().y()-8, *size_pix ); - p.drawPixmap( t.left() +4, t.center().y()-miniIcon().height()/2, miniIcon() ); - t.setLeft( t.left() + 20 + 5 ); - p.setPen(options->color(Options::Font, isActive())); - p.setFont(options->font(isActive())); - p.drawText( t, AlignLeft|AlignVCenter, caption() ); -} - - -void BeClient::showEvent( QShowEvent* e) -{ - Client::showEvent( e ); - doShape(); - repaint(); -} - -void BeClient::doShape() -{ - QFontMetrics fm = fontMetrics(); - int cap = 20+20+10+10+fm.boundingRect(caption() ).width(); - titlebar->changeSize( QMIN( width(), cap), QMAX( 16, fm.lineSpacing()), - QSizePolicy::Preferred, QSizePolicy::Minimum ); - layout()->activate(); //#### this is broken!!!!! PAUL!!!!! - -// // // do it manually: #######remove this for Qt-2.01 - titlebar->setGeometry( QRect( titlebar->geometry().x(), titlebar->geometry().y(), - titlebar->sizeHint().width(), titlebar->sizeHint().height() ) ); - QRegion r( rect() ); - r = r.subtract( QRect( QPoint( titlebar->geometry().right()+1, 0), QPoint( width(), titlebar->geometry().bottom()) ) ); - setMask( r ); -} - -/*!\reimp - */ -void BeClient::activeChange( bool /* act */ ) -{ - repaint( 0, 0, width(), titlebar->geometry().bottom()+3, FALSE ); -} - -/*!\reimp - */ -Client::MousePosition BeClient::mousePosition( const QPoint& p ) const -{ - const int range = 16; - const int border = 4; - - int ly = titlebar->geometry().bottom(); - int lx = titlebar->geometry().right(); - if ( p.x() > titlebar->geometry().right() ) { - - if ( p.y() <= ly + range && p.x() >= width()-range) - return TopRight; - else if ( p.y() <= ly + border ) - return Top; - } else if ( p.y() < ly ) { - if ( p.y() > border && p.x() < lx - border ) - return Client::mousePosition( p ); - if ( p.y() < range && p.x() > lx - range ) - return TopRight; - else if ( p.x() > lx-border ) - return Right; - } - - return Client::mousePosition( p ); -} - - -void BeClient::mousePressEvent( QMouseEvent * e ) -{ - - Client::mousePressEvent( e ); -} - -void BeClient::mouseReleaseEvent( QMouseEvent * e ) -{ - Client::mouseReleaseEvent( e ); -} - - -void BeClient::mouseDoubleClickEvent( QMouseEvent * e ) -{ - if ( titlebar->geometry().contains( e->pos() ) ) - setShade( !isShade() ); - workspace()->requestFocus( this ); -} - - -void BeClient::windowWrapperShowEvent( QShowEvent* ) -{ - doShape(); -} diff --git a/clients/be/beclient.h b/clients/be/beclient.h deleted file mode 100644 index cb2a29002a..0000000000 --- a/clients/be/beclient.h +++ /dev/null @@ -1,38 +0,0 @@ -#ifndef BECLIENT_H -#define BECLIENT_H -#include "../../client.h" -class QToolButton; -class QLabel; -class QSpacerItem; - - -class BeClient : public Client -{ - Q_OBJECT -public: - BeClient( Workspace *ws, WId w, QWidget *parent=0, const char *name=0 ); - ~BeClient(); -protected: - void resizeEvent( QResizeEvent* ); - void windowWrapperShowEvent( QShowEvent* ); - void paintEvent( QPaintEvent* ); - void mousePressEvent( QMouseEvent * ); - void mouseReleaseEvent( QMouseEvent * ); - void mouseDoubleClickEvent( QMouseEvent * e ); - - void captionChange( const QString& name ); - - void showEvent( QShowEvent* ); - void activeChange( bool ); - - MousePosition mousePosition( const QPoint& p ) const; - -private: - QSpacerItem* titlebar; - void doShape(); -}; - - - -#endif -