+ unify DLL export defines to namespace names
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
135
src/Gui/ToolBoxManager.cpp
Normal file
135
src/Gui/ToolBoxManager.cpp
Normal file
@@ -0,0 +1,135 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2005 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library 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 Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#include "PreCompiled.h"
|
||||
#ifndef _PreComp_
|
||||
# include <QApplication>
|
||||
# include <QStyle>
|
||||
# include <QToolBar>
|
||||
# include <QToolButton>
|
||||
#endif
|
||||
|
||||
#include "ToolBoxManager.h"
|
||||
#include "ToolBarManager.h"
|
||||
#include "Application.h"
|
||||
#include "Command.h"
|
||||
#include "ToolBox.h"
|
||||
|
||||
using namespace Gui;
|
||||
using DockWnd::ToolBox;
|
||||
|
||||
ToolBoxManager* ToolBoxManager::_instance=0;
|
||||
|
||||
ToolBoxManager* ToolBoxManager::getInstance()
|
||||
{
|
||||
if ( !_instance )
|
||||
_instance = new ToolBoxManager;
|
||||
return _instance;
|
||||
}
|
||||
|
||||
void ToolBoxManager::destruct()
|
||||
{
|
||||
delete _instance;
|
||||
_instance = 0;
|
||||
}
|
||||
|
||||
ToolBoxManager::ToolBoxManager() : _toolBox(0L)
|
||||
{
|
||||
}
|
||||
|
||||
ToolBoxManager::~ToolBoxManager()
|
||||
{
|
||||
}
|
||||
|
||||
void ToolBoxManager::setToolBox( DockWnd::ToolBox* tb )
|
||||
{
|
||||
_toolBox = tb;
|
||||
}
|
||||
|
||||
void ToolBoxManager::setup( ToolBarItem* toolBar ) const
|
||||
{
|
||||
if ( !toolBar || !_toolBox )
|
||||
return; // empty tool bar
|
||||
|
||||
int ct = _toolBox->count();
|
||||
for ( int i=0; i<ct; i++ )
|
||||
{
|
||||
// get always the first item widget
|
||||
QWidget* w = _toolBox->widget(0);
|
||||
_toolBox->removeItem(0);
|
||||
delete w;
|
||||
}
|
||||
|
||||
CommandManager& mgr = Application::Instance->commandManager();
|
||||
QList<ToolBarItem*> items = toolBar->getItems();
|
||||
|
||||
for ( QList<ToolBarItem*>::ConstIterator item = items.begin(); item != items.end(); ++item )
|
||||
{
|
||||
QToolBar* bar = new QToolBar();
|
||||
bar->setOrientation(Qt::Vertical);
|
||||
bar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
||||
std::string toolbarName = (*item)->command();
|
||||
bar->setObjectName(QString::fromAscii((*item)->command().c_str()));
|
||||
bar->setWindowTitle(QObject::trUtf8(toolbarName.c_str())); // i18n
|
||||
_toolBox->addItem( bar, bar->windowTitle() );
|
||||
|
||||
QList<ToolBarItem*> subitems = (*item)->getItems();
|
||||
for ( QList<ToolBarItem*>::ConstIterator subitem = subitems.begin(); subitem != subitems.end(); ++subitem )
|
||||
{
|
||||
if ( (*subitem)->command() == "Separator" ) {
|
||||
//bar->addSeparator();
|
||||
} else {
|
||||
mgr.addTo((*subitem)->command().c_str(), bar);
|
||||
}
|
||||
}
|
||||
|
||||
// Now set the right size policy for each tool button
|
||||
QList<QToolButton*> tool = bar->findChildren<QToolButton*>();
|
||||
for (QList<QToolButton*>::Iterator it = tool.begin(); it != tool.end(); ++it) {
|
||||
(*it)->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
||||
// When setting the horizontal size policy but no icon is set we use the following trick
|
||||
// to make the button text left aligned.
|
||||
QIcon icon = (*it)->icon();
|
||||
if (icon.isNull())
|
||||
{
|
||||
// Create an icon filled with the button color
|
||||
int size = QApplication::style()->pixelMetric(QStyle::PM_SmallIconSize);
|
||||
QPixmap p(size, size);
|
||||
p.fill(Qt::transparent);
|
||||
(*it)->setIcon(p);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ToolBoxManager::retranslate() const
|
||||
{
|
||||
int ct = _toolBox->count();
|
||||
for (int i=0; i<ct; i++) {
|
||||
// get always the first item widget
|
||||
QWidget* w = _toolBox->widget(i);
|
||||
QByteArray toolbarName = w->objectName().toUtf8();
|
||||
w->setWindowTitle(QObject::trUtf8(toolbarName.constData()));
|
||||
_toolBox->setItemText(i, w->windowTitle());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user