lyx_mirror/src/frontends/qt4/panelstack.C
Georg Baum c4320d24cd Make string conversion work with non-ucs2-characters if using qt 4.2
* src/frontends/qt4/qt_helpers.[Ch]
	(toqstr): Use QString::fromUcs4 if the qt version is at
	least 4.2.
	(qstring_to_ucs4): Use QString::toUcs4 if the qt version is at
	least 4.2
	(ucs4_to_qstring): Delete to avoid confusion, since it was only
	used in one place

	* src/frontends/qt4/panelstack.C
	(PanelStack::addCategory): Use toqstr instead of ucs4_to_qstring

	* src/support/unicode.[Ch]
	(ucs2_to_ucs4): Replace with utf16_to_ucs4
	(ucs4_to_ucs2): Replace with ucs4_to_utf16


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16169 a592a061-630c-0410-9148-cb99ea01b6c8
2006-12-04 13:50:46 +00:00

144 lines
3.1 KiB
C

/**
* \file panelstack.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "panelstack.h"
#include "qt_helpers.h"
#include "debug.h"
#include <QFontMetrics>
#include <QStackedWidget>
#include <QTreeWidget>
#include <QHBoxLayout>
#include <QHeaderView>
#include <boost/assert.hpp>
#include <iostream>
using std::endl;
using std::cout;
namespace lyx {
namespace frontend {
PanelStack::PanelStack(QWidget * parent)
: QWidget(parent)
{
list_ = new QTreeWidget(this);
stack_ = new QStackedWidget(this);
list_->setColumnCount(1);
// Hide the pointless list header
list_->header()->hide();
// QStringList HeaderLabels;
// HeaderLabels << QString("Category");
// list_->setHeaderLabels(HeaderLabels);
connect(list_, SIGNAL(currentItemChanged (QTreeWidgetItem*, QTreeWidgetItem*)),
this, SLOT(switchPanel(QTreeWidgetItem *, QTreeWidgetItem*)));
QHBoxLayout * layout = new QHBoxLayout(this);
layout->addWidget(list_, 0);
layout->addWidget(stack_, 1);
}
void PanelStack::addCategory(docstring const & n, docstring const & parent)
{
QTreeWidgetItem * item;
QString const name(toqstr(n));
lyxerr[Debug::GUI] << "addCategory n= " << lyx::to_utf8(n) << " parent= " << endl;
int depth = 1;
if (parent.empty()) {
item = new QTreeWidgetItem(list_);
item->setText(0, name);
}
else {
PanelMap::iterator it = panel_map_.find(parent);
//BOOST_ASSERT(it != panel_map_.end());
if (it == panel_map_.end()) {
addCategory(parent);
it = panel_map_.find(parent);
}
BOOST_ASSERT(it != panel_map_.end());
item = new QTreeWidgetItem(it->second);
item->setText(0, name);
depth = 2;
}
panel_map_[n] = item;
QFontMetrics fm(list_->font());
// calculate the real size the current item needs in the listview
int itemsize = fm.width(name) + 10
+ list_->indentation() * depth;
// adjust the listview width to the max. itemsize
if (itemsize > list_->minimumWidth())
list_->setMinimumWidth(itemsize);
}
void PanelStack::addPanel(QWidget * panel, docstring const & name, docstring const & parent)
{
addCategory(name, parent);
QTreeWidgetItem * item = panel_map_.find(name)->second;
widget_map_[item] = panel;
stack_->addWidget(panel);
stack_->setMinimumSize(panel->minimumSize());
}
void PanelStack::setCurrentPanel(docstring const & name)
{
PanelMap::const_iterator cit = panel_map_.find(name);
BOOST_ASSERT(cit != panel_map_.end());
// force on first set
if (list_->currentItem() == cit->second)
switchPanel(cit->second);
list_->setCurrentItem(cit->second);
}
void PanelStack::switchPanel(QTreeWidgetItem * item,
QTreeWidgetItem * /*previous*/)
{
WidgetMap::const_iterator cit = widget_map_.find(item);
if (cit == widget_map_.end())
return;
stack_->setCurrentWidget(cit->second);
}
QSize PanelStack::sizeHint() const
{
return QSize(list_->width() + stack_->width(),
qMax(list_->height(), stack_->height()));
}
} // namespace frontend
} // namespace lyx
#include "panelstack_moc.cpp"