1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* QLanguageCommandPalette.cpp
*
* Created by Christophe Daudin on 12/05/09.
* Copyright 2009 Grame. All rights reserved.
*
* GNU Lesser General Public License Usage
* Alternatively, this file may be used under the terms of the GNU Lesser
* General Public License version 2.1 as published by the Free Software
* Foundation and appearing in the file LICENSE.LGPL included in the
* packaging of this file. Please review the following information to
* ensure the GNU Lesser General Public License version 2.1 requirements
* will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
*
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include "QLanguageCommandPalette.h"
#include "GraphicsSceneMainWindow.h"
#include <QPushButton>
#include <QTabWidget>
#include <QHBoxLayout>
#define INDENT QString(" ")
//------------------------------------------------------------------------------------
QLanguageCommandPalette::QLanguageCommandPalette(const QString& commandsFile , QWidget * parent) :
QWidget(parent)
{
QHBoxLayout *layout = new QHBoxLayout(this);
mTabStack << new QTabWidget(this);
layout->addWidget( mTabStack.top() );
setLayout(layout);
QLanguageCommandReader reader;
reader.read( this , commandsFile );
}
#include "QLanguageCommandPaletteLayout.h"
//------------------------------------------------------------------------------------
void QLanguageCommandPalette::categoryBegin( const QString& name )
{
//Add new tab to mCurrentTab. The new tab has the name of the category.
//The new tab is another QTabWidget.
//
QTabWidget * newTab = new QTabWidget( this );
newTab->setUsesScrollButtons ( true );
QLanguageCommandPaletteLayout * layout = new QLanguageCommandPaletteLayout( newTab );
newTab->setLayout( layout );
mTabStack.top()->addTab( newTab , name );
mTabStack.top()->setTabToolTip( mTabStack.top()->count()-1 , name );
mTabStack << newTab;
mCategories.push( name );
mIndent += INDENT;
setMinimumSize( QSize(200,150) );
}
//------------------------------------------------------------------------------------
void QLanguageCommandPalette::categoryEnd()
{
mIndent = mIndent.left( mIndent.length() - INDENT.length() );
mCategories.pop();
mTabStack.pop();
}
#include <QtDebug>
//------------------------------------------------------------------------------------
void QLanguageCommandPalette::newElement( const QString& name , const QString& value , int insertIndex )
{
QValuePushButton * button = new QValuePushButton( name , value , insertIndex , this );
button->setMaximumSize( QSize(10000,10000) );
connect( button , SIGNAL(clicked()) , this , SLOT(elementClick()) );
mTabStack.top()->layout()->addWidget( button );
}
//------------------------------------------------------------------------------------
void QLanguageCommandPalette::elementClick()
{
QValuePushButton * button = dynamic_cast<QValuePushButton *> (sender());
Q_EMIT insertCode(button->value(),button->insertIndex());
}
//------------------------------------------------------------------------------------
// QValuePushButton //
//------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------
QValuePushButton::QValuePushButton(const QString& name , const QString& value , int insertIndex , QWidget * parent)
: QToolButton( parent ),
mValue(value) ,
mInsertIndex( insertIndex )
{
setText( name );
setToolTip( mValue );
}
//------------------------------------------------------------------------------------
int QValuePushButton::insertIndex() const
{
return mInsertIndex;
}
//------------------------------------------------------------------------------------
QString QValuePushButton::value() const
{
return mValue;
}
|