7d7e9df7fc
* Implemented colour scheme support, including antialising of symbols and coloured edges to 3d items. * Increased speed and reduced memory usage. * Implemented raising when button-down on resize bar, unless you use the middle/right buttons, in which case you can resize without raising. svn path=/trunk/kdebase/kwin/; revision=46233
93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
/*
|
|
RISC OS KWin client
|
|
|
|
Copyright 2000
|
|
Rik Hemsley <rik@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <qlayout.h>
|
|
|
|
#include "Manager.h"
|
|
#include "TitleBar.h"
|
|
#include "TitleText.h"
|
|
#include "CloseButton.h"
|
|
#include "IconifyButton.h"
|
|
#include "LowerButton.h"
|
|
#include "MaximiseButton.h"
|
|
|
|
namespace RiscOS
|
|
{
|
|
|
|
TitleBar::TitleBar(QWidget * parent, Manager * client)
|
|
: QWidget(parent),
|
|
client_(client)
|
|
{
|
|
setBackgroundMode(NoBackground);
|
|
setFixedHeight(20);
|
|
|
|
lower_ = new LowerButton (this, client_);
|
|
close_ = new CloseButton (this, client_);
|
|
text_ = new TitleText (this, client_);
|
|
iconify_ = new IconifyButton (this, client_);
|
|
maximise_ = new MaximiseButton (this, client_);
|
|
|
|
lower_ ->setAlign(Button::Left);
|
|
close_ ->setAlign(Button::Left);
|
|
iconify_ ->setAlign(Button::Right);
|
|
maximise_ ->setAlign(Button::Right);
|
|
|
|
// Lower | Close | Text | Iconify | Maximise
|
|
|
|
QHBoxLayout * layout = new QHBoxLayout(this);
|
|
|
|
layout->addWidget(lower_);
|
|
layout->addWidget(close_);
|
|
layout->addWidget(text_, 1);
|
|
layout->addWidget(iconify_);
|
|
layout->addWidget(maximise_);
|
|
}
|
|
|
|
void
|
|
TitleBar::updateDisplay()
|
|
{
|
|
lower_ ->updateDisplay();
|
|
close_ ->updateDisplay();
|
|
text_ ->updateDisplay();
|
|
iconify_ ->updateDisplay();
|
|
maximise_ ->updateDisplay();
|
|
}
|
|
|
|
void
|
|
TitleBar::updateMaximise(bool b)
|
|
{
|
|
maximise_->setOn(b);
|
|
}
|
|
|
|
void
|
|
TitleBar::updateText()
|
|
{
|
|
text_->updateDisplay();
|
|
}
|
|
|
|
TitleBar::~TitleBar()
|
|
{
|
|
}
|
|
|
|
} // End namespace
|
|
|
|
// vim:ts=2:sw=2:tw=78
|