2000-04-10 17:18:21 +00:00
|
|
|
/*
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-05-04 23:12:29 +00:00
|
|
|
void
|
|
|
|
TitleBar::resizeEvent(QResizeEvent * e)
|
|
|
|
{
|
|
|
|
int sizeProblem = 0;
|
|
|
|
|
|
|
|
if (width() < 80) sizeProblem = 3;
|
|
|
|
else if (width() < 100) sizeProblem = 2;
|
|
|
|
else if (width() < 120) sizeProblem = 1;
|
|
|
|
|
|
|
|
switch (sizeProblem) {
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
lower_ ->hide();
|
|
|
|
iconify_ ->show();
|
|
|
|
maximise_ ->hide();
|
|
|
|
close_ ->show();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
lower_ ->hide();
|
|
|
|
iconify_ ->hide();
|
|
|
|
maximise_ ->hide();
|
|
|
|
close_ ->show();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
lower_ ->hide();
|
|
|
|
iconify_ ->hide();
|
|
|
|
maximise_ ->hide();
|
|
|
|
close_ ->hide();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
lower_ ->show();
|
|
|
|
iconify_ ->show();
|
|
|
|
maximise_ ->show();
|
|
|
|
close_ ->show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget::resizeEvent(e);
|
|
|
|
}
|
|
|
|
|
2000-04-10 17:18:21 +00:00
|
|
|
} // End namespace
|
|
|
|
|
|
|
|
// vim:ts=2:sw=2:tw=78
|