/* This file is part of the KDE libraries Copyright (C) 2001-2003 Christoph Cullmann Copyright (C) 2002, 2003 Anders Lund This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ //BEGIN Includes #include "kateschema.h" #include "kateschema.moc" #include "kateconfig.h" #include "katedocument.h" #include "katefactory.h" #include "kateview.h" #include "katerenderer.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //END //BEGIN KateStyleListViewItem decl /* TQListViewItem subclass to display/edit a style, bold/italic is check boxes, normal and selected colors are boxes, which will display a color chooser when activated. The context name for the style will be drawn using the editor default font and the chosen colors. This widget id designed to handle the default as well as the individual hl style lists. This widget is designed to work with the KateStyleListView class exclusively. Added by anders, jan 23 2002. */ class KateStyleListItem : public TQListViewItem { public: KateStyleListItem( TQListViewItem *parent=0, const TQString & stylename=0, class KateAttribute* defaultstyle=0, class KateHlItemData *data=0 ); KateStyleListItem( TQListView *parent, const TQString & stylename=0, class KateAttribute* defaultstyle=0, class KateHlItemData *data=0 ); ~KateStyleListItem() { if (st) delete is; }; /* mainly for readability */ enum Property { ContextName, Bold, Italic, Underline, Strikeout, Color, SelColor, BgColor, SelBgColor, UseDefStyle }; /* initializes the style from the default and the hldata */ void initStyle(); /* updates the hldata's style */ void updateStyle(); /* reimp */ virtual int width ( const TQFontMetrics & fm, const TQListView * lv, int c ) const; /* calls changeProperty() if it makes sense considering pos. */ void activate( int column, const TQPoint &localPos ); /* For bool fields, toggles them, for color fields, display a color chooser */ void changeProperty( Property p ); /** unset a color. * c is 100 (BGColor) or 101 (SelectedBGColor) for now. */ void unsetColor( int c ); /* style context name */ TQString contextName() { return text(0); }; /* only true for a hl mode item using it's default style */ bool defStyle(); /* true for default styles */ bool isDefault(); /* whichever style is active (st for hl mode styles not using the default style, ds otherwise) */ class KateAttribute* style() { return is; }; protected: /* reimp */ void paintCell(TQPainter *p, const TQColorGroup& cg, int col, int width, int align); private: /* private methods to change properties */ void toggleDefStyle(); void setColor( int ); /* helper function to copy the default style into the KateHlItemData, when a property is changed and we are using default style. */ class KateAttribute *is, // the style currently in use *ds; // default style for hl mode contexts and default styles class KateHlItemData *st; // itemdata for hl mode contexts }; //END //BEGIN KateStyleListCaption decl /* This is a simple subclass for drawing the language names in a nice treeview with the styles. It is needed because we do not like to mess with the default palette of the containing ListView. Only the paintCell method is overwritten to use our own palette (that is set on the viewport rather than on the listview itself). */ class KateStyleListCaption : public TQListViewItem { public: KateStyleListCaption( TQListView *parent, const TQString & name ); ~KateStyleListCaption() {}; protected: void paintCell(TQPainter *p, const TQColorGroup& cg, int col, int width, int align); }; //END //BEGIN KateSchemaManager TQString KateSchemaManager::normalSchema () { return TDEApplication::kApplication()->aboutData()->appName () + TQString (" - Normal"); } TQString KateSchemaManager::printingSchema () { return TDEApplication::kApplication()->aboutData()->appName () + TQString (" - Printing"); } KateSchemaManager::KateSchemaManager () : m_config ("kateschemarc", false, false) { update (); } KateSchemaManager::~KateSchemaManager () { } // // read the types from config file and update the internal list // void KateSchemaManager::update (bool readfromfile) { if (readfromfile) m_config.reparseConfiguration (); m_schemas = m_config.groupList(); m_schemas.sort (); m_schemas.remove (printingSchema()); m_schemas.remove (normalSchema()); m_schemas.prepend (printingSchema()); m_schemas.prepend (normalSchema()); } // // get the right group // special handling of the default schemas ;) // TDEConfig *KateSchemaManager::schema (uint number) { if ((number>1) && (number < m_schemas.count())) m_config.setGroup (m_schemas[number]); else if (number == 1) m_config.setGroup (printingSchema()); else m_config.setGroup (normalSchema()); return &m_config; } void KateSchemaManager::addSchema (const TQString &t) { m_config.setGroup (t); m_config.writeEntry("Color Background", TDEGlobalSettings::baseColor()); update (false); } void KateSchemaManager::removeSchema (uint number) { if (number >= m_schemas.count()) return; if (number < 2) return; m_config.deleteGroup (name (number)); update (false); } bool KateSchemaManager::validSchema (uint number) { if (number < m_schemas.count()) return true; return false; } uint KateSchemaManager::number (const TQString &name) { if (name == normalSchema()) return 0; if (name == printingSchema()) return 1; int i; if ((i = m_schemas.findIndex(name)) > -1) return i; return 0; } TQString KateSchemaManager::name (uint number) { if ((number>1) && (number < m_schemas.count())) return m_schemas[number]; else if (number == 1) return printingSchema(); return normalSchema(); } //END // // DIALOGS !!! // //BEGIN KateSchemaConfigColorTab -- 'Colors' tab KateSchemaConfigColorTab::KateSchemaConfigColorTab( TQWidget *parent, const char * ) : TQWidget (parent) { m_schema = -1; TQHBox *b; TQLabel *label; TQVBoxLayout *blay=new TQVBoxLayout(this, 0, KDialog::spacingHint()); TQVGroupBox *gbTextArea = new TQVGroupBox(i18n("Text Area Background"), this); b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Normal text:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_back = new KColorButton(b); b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Selected text:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_selected = new KColorButton(b); b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Current line:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_current = new KColorButton(b); // Markers from tdelibs/interfaces/ktextinterface/markinterface.h b = new TQHBox (gbTextArea); b->setSpacing(KDialog::spacingHint()); m_combobox = new KComboBox(b, "color_combo_box"); // add the predefined mark types as defined in markinterface.h m_combobox->insertItem(i18n("Bookmark")); // markType01 m_combobox->insertItem(i18n("Active Breakpoint")); // markType02 m_combobox->insertItem(i18n("Reached Breakpoint")); // markType03 m_combobox->insertItem(i18n("Disabled Breakpoint")); // markType04 m_combobox->insertItem(i18n("Execution")); // markType05 m_combobox->insertItem(i18n("Warning")); // markType06 m_combobox->insertItem(i18n("Error")); // markType07 m_combobox->setCurrentItem(0); m_markers = new KColorButton(b, "marker_color_button"); connect( m_combobox, TQT_SIGNAL( activated( int ) ), TQT_SLOT( slotComboBoxChanged( int ) ) ); blay->addWidget(gbTextArea); TQVGroupBox *gbBorder = new TQVGroupBox(i18n("Additional Elements"), this); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Left border background:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_iconborder = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Line numbers:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_linenumber = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Bracket highlight:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_bracket = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Word wrap markers:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_wwmarker = new KColorButton(b); b = new TQHBox (gbBorder); b->setSpacing(KDialog::spacingHint()); label = new TQLabel( i18n("Tab markers:"), b); label->setAlignment( AlignLeft|AlignVCenter); m_tmarker = new KColorButton(b); blay->addWidget(gbBorder); blay->addStretch(); // connect signal changed(); changed is emitted by a ColorButton change! connect( this, TQT_SIGNAL( changed() ), parent->parentWidget(), TQT_SLOT( slotChanged() ) ); // TQWhatsThis help TQWhatsThis::add(m_back, i18n("

Sets the background color of the editing area.

")); TQWhatsThis::add(m_selected, i18n("

Sets the background color of the selection.

" "

To set the text color for selected text, use the \"Configure " "Highlighting\" dialog.

")); TQWhatsThis::add(m_markers, i18n("

Sets the background color of the selected " "marker type.

Note: The marker color is displayed lightly because " "of transparency.

")); TQWhatsThis::add(m_combobox, i18n("

Select the marker type you want to change.

")); TQWhatsThis::add(m_current, i18n("

Sets the background color of the currently " "active line, which means the line where your cursor is positioned.

")); TQWhatsThis::add( m_linenumber, i18n( "

This color will be used to draw the line numbers (if enabled) and the " "lines in the code-folding pane.

" ) ); TQWhatsThis::add(m_bracket, i18n("

Sets the bracket matching color. This means, " "if you place the cursor e.g. at a (, the matching ) will " "be highlighted with this color.

")); TQWhatsThis::add(m_wwmarker, i18n( "

Sets the color of Word Wrap-related markers:

" "
Static Word Wrap
A vertical line which shows the column where " "text is going to be wrapped
" "
Dynamic Word Wrap
An arrow shown to the left of " "visually-wrapped lines
")); TQWhatsThis::add(m_tmarker, i18n( "

Sets the color of the tabulator marks:

")); } KateSchemaConfigColorTab::~KateSchemaConfigColorTab() { } void KateSchemaConfigColorTab::schemaChanged ( int newSchema ) { // save curent schema if ( m_schema > -1 ) { m_schemas[ m_schema ].back = m_back->color(); m_schemas[ m_schema ].selected = m_selected->color(); m_schemas[ m_schema ].current = m_current->color(); m_schemas[ m_schema ].bracket = m_bracket->color(); m_schemas[ m_schema ].wwmarker = m_wwmarker->color(); m_schemas[ m_schema ].iconborder = m_iconborder->color(); m_schemas[ m_schema ].tmarker = m_tmarker->color(); m_schemas[ m_schema ].linenumber = m_linenumber->color(); } if ( newSchema == m_schema ) return; // switch m_schema = newSchema; // first disconnect all signals otherwise setColor emits changed m_back ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_selected ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_current ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_bracket ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_wwmarker ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_iconborder->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_tmarker ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_markers ->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); m_linenumber->disconnect( TQT_SIGNAL( changed( const TQColor & ) ) ); // If we havent this schema, read in from config file if ( ! m_schemas.contains( newSchema ) ) { // fallback defaults TQColor tmp0 (TDEGlobalSettings::baseColor()); TQColor tmp1 (TDEGlobalSettings::highlightColor()); TQColor tmp2 (TDEGlobalSettings::alternateBackgroundColor()); TQColor tmp3 ( "#FFFF99" ); TQColor tmp4 (tmp2.dark()); TQColor tmp5 ( TDEGlobalSettings::textColor() ); TQColor tmp6 ( "#EAE9E8" ); TQColor tmp7 ( "#000000" ); // same std colors like in KateDocument::markColor TQValueVector mark(KTextEditor::MarkInterface::reservedMarkersCount()); Q_ASSERT(mark.size() > 6); mark[0] = Qt::blue; mark[1] = Qt::red; mark[2] = Qt::yellow; mark[3] = Qt::magenta; mark[4] = Qt::gray; mark[5] = Qt::green; mark[6] = Qt::red; SchemaColors c; TDEConfig *config = KateFactory::self()->schemaManager()->schema(newSchema); c.back= config->readColorEntry("Color Background", &tmp0); c.selected = config->readColorEntry("Color Selection", &tmp1); c.current = config->readColorEntry("Color Highlighted Line", &tmp2); c.bracket = config->readColorEntry("Color Highlighted Bracket", &tmp3); c.wwmarker = config->readColorEntry("Color Word Wrap Marker", &tmp4); c.tmarker = config->readColorEntry("Color Tab Marker", &tmp5); c.iconborder = config->readColorEntry("Color Icon Bar", &tmp6); c.linenumber = config->readColorEntry("Color Line Number", &tmp7); for (int i = 0; i < KTextEditor::MarkInterface::reservedMarkersCount(); i++) c.markerColors[i] = config->readColorEntry( TQString("Color MarkType%1").arg(i+1), &mark[i] ); m_schemas[ newSchema ] = c; } m_back->setColor( m_schemas[ newSchema ].back); m_selected->setColor( m_schemas [ newSchema ].selected ); m_current->setColor( m_schemas [ newSchema ].current ); m_bracket->setColor( m_schemas [ newSchema ].bracket ); m_wwmarker->setColor( m_schemas [ newSchema ].wwmarker ); m_tmarker->setColor( m_schemas [ newSchema ].tmarker ); m_iconborder->setColor( m_schemas [ newSchema ].iconborder ); m_linenumber->setColor( m_schemas [ newSchema ].linenumber ); // map from 0..reservedMarkersCount()-1 - the same index as in markInterface for (int i = 0; i < KTextEditor::MarkInterface::reservedMarkersCount(); i++) { TQPixmap pix(16, 16); pix.fill( m_schemas [ newSchema ].markerColors[i]); m_combobox->changeItem(pix, m_combobox->text(i), i); } m_markers->setColor( m_schemas [ newSchema ].markerColors[ m_combobox->currentItem() ] ); connect( m_back , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_selected , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_current , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_bracket , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_wwmarker , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_iconborder, TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_tmarker , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_linenumber, TQT_SIGNAL( changed( const TQColor& ) ), TQT_SIGNAL( changed() ) ); connect( m_markers , TQT_SIGNAL( changed( const TQColor& ) ), TQT_SLOT( slotMarkerColorChanged( const TQColor& ) ) ); } void KateSchemaConfigColorTab::apply () { schemaChanged( m_schema ); TQMap::Iterator it; for ( it = m_schemas.begin(); it != m_schemas.end(); ++it ) { kdDebug(13030)<<"APPLY scheme = "<schemaManager()->schema( it.key() ); kdDebug(13030)<<"Using config group "<group()<writeEntry("Color Background", c.back); config->writeEntry("Color Selection", c.selected); config->writeEntry("Color Highlighted Line", c.current); config->writeEntry("Color Highlighted Bracket", c.bracket); config->writeEntry("Color Word Wrap Marker", c.wwmarker); config->writeEntry("Color Tab Marker", c.tmarker); config->writeEntry("Color Icon Bar", c.iconborder); config->writeEntry("Color Line Number", c.linenumber); for (int i = 0; i < KTextEditor::MarkInterface::reservedMarkersCount(); i++) { config->writeEntry(TQString("Color MarkType%1").arg(i + 1), c.markerColors[i]); } } } void KateSchemaConfigColorTab::slotMarkerColorChanged( const TQColor& color) { int index = m_combobox->currentItem(); m_schemas[ m_schema ].markerColors[ index ] = color; TQPixmap pix(16, 16); pix.fill(color); m_combobox->changeItem(pix, m_combobox->text(index), index); emit changed(); } void KateSchemaConfigColorTab::slotComboBoxChanged(int index) { // temporarily disconnect the changed-signal because setColor emits changed as well m_markers->disconnect( TQT_SIGNAL( changed( const TQColor& ) ) ); m_markers->setColor( m_schemas[m_schema].markerColors[index] ); connect( m_markers, TQT_SIGNAL( changed( const TQColor& ) ), TQT_SLOT( slotMarkerColorChanged( const TQColor& ) ) ); } //END KateSchemaConfigColorTab //BEGIN FontConfig -- 'Fonts' tab KateSchemaConfigFontTab::KateSchemaConfigFontTab( TQWidget *parent, const char * ) : TQWidget (parent) { // sizemanagment TQGridLayout *grid = new TQGridLayout( this, 1, 1 ); m_fontchooser = new TDEFontChooser ( this, 0L, false, TQStringList(), false ); m_fontchooser->enableColumn(TDEFontChooser::StyleList, false); grid->addWidget( m_fontchooser, 0, 0); connect (this, TQT_SIGNAL( changed()), parent->parentWidget(), TQT_SLOT (slotChanged())); m_schema = -1; } KateSchemaConfigFontTab::~KateSchemaConfigFontTab() { } void KateSchemaConfigFontTab::slotFontSelected( const TQFont &font ) { if ( m_schema > -1 ) { m_fonts[m_schema] = font; emit changed(); } } void KateSchemaConfigFontTab::apply() { FontMap::Iterator it; for ( it = m_fonts.begin(); it != m_fonts.end(); ++it ) { KateFactory::self()->schemaManager()->schema( it.key() )->writeEntry( "Font", it.data() ); } } void KateSchemaConfigFontTab::schemaChanged( int newSchema ) { if ( m_schema > -1 ) m_fonts[ m_schema ] = m_fontchooser->font(); m_schema = newSchema; TQFont f (TDEGlobalSettings::fixedFont()); m_fontchooser->disconnect ( this ); m_fontchooser->setFont ( KateFactory::self()->schemaManager()->schema( newSchema )->readFontEntry("Font", &f) ); m_fonts[ newSchema ] = m_fontchooser->font(); connect (m_fontchooser, TQT_SIGNAL (fontSelected( const TQFont & )), this, TQT_SLOT (slotFontSelected( const TQFont & ))); } //END FontConfig //BEGIN FontColorConfig -- 'Normal Text Styles' tab KateSchemaConfigFontColorTab::KateSchemaConfigFontColorTab( TQWidget *parent, const char * ) : TQWidget (parent) { m_defaultStyleLists.setAutoDelete(true); // sizemanagment TQGridLayout *grid = new TQGridLayout( this, 1, 1 ); m_defaultStyles = new KateStyleListView( this, false ); grid->addWidget( m_defaultStyles, 0, 0); connect (m_defaultStyles, TQT_SIGNAL (changed()), parent->parentWidget(), TQT_SLOT (slotChanged())); TQWhatsThis::add( m_defaultStyles, i18n( "This list displays the default styles for the current schema and " "offers the means to edit them. The style name reflects the current " "style settings." "

To edit the colors, click the colored squares, or select the color " "to edit from the popup menu.

You can unset the Background and Selected " "Background colors from the popup menu when appropriate.") ); } KateSchemaConfigFontColorTab::~KateSchemaConfigFontColorTab() { } KateAttributeList *KateSchemaConfigFontColorTab::attributeList (uint schema) { if (!m_defaultStyleLists[schema]) { KateAttributeList *list = new KateAttributeList (); KateHlManager::self()->getDefaults(schema, *list); m_defaultStyleLists.insert (schema, list); } return m_defaultStyleLists[schema]; } void KateSchemaConfigFontColorTab::schemaChanged (uint schema) { m_defaultStyles->clear (); KateAttributeList *l = attributeList (schema); // set colors TQPalette p ( m_defaultStyles->palette() ); TQColor _c ( TDEGlobalSettings::baseColor() ); p.setColor( TQColorGroup::Base, KateFactory::self()->schemaManager()->schema(schema)-> readColorEntry( "Color Background", &_c ) ); _c = TDEGlobalSettings::highlightColor(); p.setColor( TQColorGroup::Highlight, KateFactory::self()->schemaManager()->schema(schema)-> readColorEntry( "Color Selection", &_c ) ); _c = l->at(0)->textColor(); // not quite as much of an assumption ;) p.setColor( TQColorGroup::Text, _c ); m_defaultStyles->viewport()->setPalette( p ); // insert the default styles backwards to get them in the right order for ( int i = KateHlManager::self()->defaultStyles() - 1; i >= 0; i-- ) { new KateStyleListItem( m_defaultStyles, KateHlManager::self()->defaultStyleName(i, true), l->at( i ) ); } } void KateSchemaConfigFontColorTab::reload () { m_defaultStyles->clear (); m_defaultStyleLists.clear (); } void KateSchemaConfigFontColorTab::apply () { for ( TQIntDictIterator it( m_defaultStyleLists ); it.current(); ++it ) KateHlManager::self()->setDefaults(it.currentKey(), *(it.current())); } //END FontColorConfig //BEGIN KateSchemaConfigHighlightTab -- 'Highlighting Text Styles' tab KateSchemaConfigHighlightTab::KateSchemaConfigHighlightTab( TQWidget *parent, const char *, KateSchemaConfigFontColorTab *page, uint hl ) : TQWidget (parent) { m_defaults = page; m_schema = 0; m_hl = 0; m_hlDict.setAutoDelete (true); TQVBoxLayout *layout = new TQVBoxLayout(this, 0, KDialog::spacingHint() ); // hl chooser TQHBox *hbHl = new TQHBox( this ); layout->add (hbHl); hbHl->setSpacing( KDialog::spacingHint() ); TQLabel *lHl = new TQLabel( i18n("H&ighlight:"), hbHl ); hlCombo = new TQComboBox( false, hbHl ); lHl->setBuddy( hlCombo ); connect( hlCombo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(hlChanged(int)) ); for( int i = 0; i < KateHlManager::self()->highlights(); i++) { if (KateHlManager::self()->hlSection(i).length() > 0) hlCombo->insertItem(KateHlManager::self()->hlSection(i) + TQString ("/") + KateHlManager::self()->hlNameTranslated(i)); else hlCombo->insertItem(KateHlManager::self()->hlNameTranslated(i)); } hlCombo->setCurrentItem(0); // styles listview m_styles = new KateStyleListView( this, true ); layout->addWidget (m_styles, 999); hlCombo->setCurrentItem ( hl ); hlChanged ( hl ); TQWhatsThis::add( m_styles, i18n( "This list displays the contexts of the current syntax highlight mode and " "offers the means to edit them. The context name reflects the current " "style settings.

To edit using the keyboard, press " "<SPACE> and choose a property from the popup menu." "

To edit the colors, click the colored squares, or select the color " "to edit from the popup menu.

You can unset the Background and Selected " "Background colors from the context menu when appropriate.") ); connect (m_styles, TQT_SIGNAL (changed()), parent->parentWidget(), TQT_SLOT (slotChanged())); } KateSchemaConfigHighlightTab::~KateSchemaConfigHighlightTab() { } void KateSchemaConfigHighlightTab::hlChanged(int z) { m_hl = z; schemaChanged (m_schema); } void KateSchemaConfigHighlightTab::schemaChanged (uint schema) { m_schema = schema; kdDebug(13030) << "NEW SCHEMA: " << m_schema << " NEW HL: " << m_hl << endl; m_styles->clear (); if (!m_hlDict[m_schema]) { kdDebug(13030) << "NEW SCHEMA, create dict" << endl; m_hlDict.insert (schema, new TQIntDict); m_hlDict[m_schema]->setAutoDelete (true); } if (!m_hlDict[m_schema]->find(m_hl)) { kdDebug(13030) << "NEW HL, create list" << endl; KateHlItemDataList *list = new KateHlItemDataList (); KateHlManager::self()->getHl( m_hl )->getKateHlItemDataListCopy (m_schema, *list); m_hlDict[m_schema]->insert (m_hl, list); } KateAttributeList *l = m_defaults->attributeList (schema); // Set listview colors // We do that now, because we can now get the "normal text" color. // TODO this reads of the TDEConfig object, which should be changed when // the color tab is fixed. TQPalette p ( m_styles->palette() ); TQColor _c ( TDEGlobalSettings::baseColor() ); p.setColor( TQColorGroup::Base, KateFactory::self()->schemaManager()->schema(m_schema)-> readColorEntry( "Color Background", &_c ) ); _c = TDEGlobalSettings::highlightColor(); p.setColor( TQColorGroup::Highlight, KateFactory::self()->schemaManager()->schema(m_schema)-> readColorEntry( "Color Selection", &_c ) ); _c = l->at(0)->textColor(); // not quite as much of an assumption ;) p.setColor( TQColorGroup::Text, _c ); m_styles->viewport()->setPalette( p ); TQDict prefixes; for ( KateHlItemData *itemData = m_hlDict[m_schema]->find(m_hl)->last(); itemData != 0L; itemData = m_hlDict[m_schema]->find(m_hl)->prev()) { kdDebug(13030) << "insert items " << itemData->name << endl; // All stylenames have their language mode prefixed, e.g. HTML:Comment // split them and put them into nice substructures. int c = itemData->name.find(':'); if ( c > 0 ) { TQString prefix = itemData->name.left(c); TQString name = itemData->name.mid(c+1); KateStyleListCaption *parent = prefixes.find( prefix ); if ( ! parent ) { parent = new KateStyleListCaption( m_styles, prefix ); parent->setOpen(true); prefixes.insert( prefix, parent ); } new KateStyleListItem( parent, name, l->at(itemData->defStyleNum), itemData ); } else { new KateStyleListItem( m_styles, itemData->name, l->at(itemData->defStyleNum), itemData ); } } } void KateSchemaConfigHighlightTab::reload () { m_styles->clear (); m_hlDict.clear (); hlChanged (0); } void KateSchemaConfigHighlightTab::apply () { for ( TQIntDictIterator< TQIntDict > it( m_hlDict ); it.current(); ++it ) for ( TQIntDictIterator< KateHlItemDataList > it2( *it.current() ); it2.current(); ++it2 ) { KateHlManager::self()->getHl( it2.currentKey() )->setKateHlItemDataList (it.currentKey(), *(it2.current())); } } //END KateSchemaConfigHighlightTab //BEGIN KateSchemaConfigPage -- Main dialog page KateSchemaConfigPage::KateSchemaConfigPage( TQWidget *parent, KateDocument *doc ) : KateConfigPage( parent ), m_lastSchema (-1) { TQVBoxLayout *layout = new TQVBoxLayout(this, 0, KDialog::spacingHint() ); TQHBox *hbHl = new TQHBox( this ); layout->add (hbHl); hbHl->setSpacing( KDialog::spacingHint() ); TQLabel *lHl = new TQLabel( i18n("&Schema:"), hbHl ); schemaCombo = new TQComboBox( false, hbHl ); lHl->setBuddy( schemaCombo ); connect( schemaCombo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(schemaChanged(int)) ); TQPushButton *btnnew = new TQPushButton( i18n("&New..."), hbHl ); connect( btnnew, TQT_SIGNAL(clicked()), this, TQT_SLOT(newSchema()) ); btndel = new TQPushButton( i18n("&Delete"), hbHl ); connect( btndel, TQT_SIGNAL(clicked()), this, TQT_SLOT(deleteSchema()) ); m_tabWidget = new TQTabWidget ( this ); m_tabWidget->setMargin (KDialog::marginHint()); layout->add (m_tabWidget); connect (m_tabWidget, TQT_SIGNAL (currentChanged (TQWidget *)), this, TQT_SLOT (newCurrentPage (TQWidget *))); m_colorTab = new KateSchemaConfigColorTab (m_tabWidget); m_tabWidget->addTab (m_colorTab, i18n("Colors")); m_fontTab = new KateSchemaConfigFontTab (m_tabWidget); m_tabWidget->addTab (m_fontTab, i18n("Font")); m_fontColorTab = new KateSchemaConfigFontColorTab (m_tabWidget); m_tabWidget->addTab (m_fontColorTab, i18n("Normal Text Styles")); uint hl = doc ? doc->hlMode() : 0; m_highlightTab = new KateSchemaConfigHighlightTab (m_tabWidget, "", m_fontColorTab, hl ); m_tabWidget->addTab (m_highlightTab, i18n("Highlighting Text Styles")); hbHl = new TQHBox( this ); layout->add (hbHl); hbHl->setSpacing( KDialog::spacingHint() ); lHl = new TQLabel( i18n("&Default schema for %1:").arg(TDEApplication::kApplication()->aboutData()->programName ()), hbHl ); defaultSchemaCombo = new TQComboBox( false, hbHl ); lHl->setBuddy( defaultSchemaCombo ); m_defaultSchema = (doc && doc->activeView()) ? doc->activeView()->renderer()->config()->schema() : KateRendererConfig::global()->schema(); reload(); connect( defaultSchemaCombo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotChanged()) ); } KateSchemaConfigPage::~KateSchemaConfigPage () { // just reload config from disc KateFactory::self()->schemaManager()->update (); } void KateSchemaConfigPage::apply() { m_colorTab->apply(); m_fontTab->apply(); m_fontColorTab->apply (); m_highlightTab->apply (); // just sync the config KateFactory::self()->schemaManager()->schema (0)->sync(); KateFactory::self()->schemaManager()->update (); // clear all attributes for (int i = 0; i < KateHlManager::self()->highlights(); ++i) KateHlManager::self()->getHl (i)->clearAttributeArrays (); // than reload the whole stuff KateRendererConfig::global()->setSchema (defaultSchemaCombo->currentItem()); KateRendererConfig::global()->reloadSchema(); // sync the hl config for real KateHlManager::self()->getTDEConfig()->sync (); } void KateSchemaConfigPage::reload() { // just reload the config from disc KateFactory::self()->schemaManager()->update (); // special for the highlighting stuff m_fontColorTab->reload (); update (); defaultSchemaCombo->setCurrentItem (KateRendererConfig::global()->schema()); // initialize to the schema in the current document, or default schema schemaCombo->setCurrentItem( m_defaultSchema ); schemaChanged( m_defaultSchema ); } void KateSchemaConfigPage::reset() { reload (); } void KateSchemaConfigPage::defaults() { reload (); } void KateSchemaConfigPage::update () { // soft update, no load from disk KateFactory::self()->schemaManager()->update (false); schemaCombo->clear (); schemaCombo->insertStringList (KateFactory::self()->schemaManager()->list ()); defaultSchemaCombo->clear (); defaultSchemaCombo->insertStringList (KateFactory::self()->schemaManager()->list ()); schemaCombo->setCurrentItem (0); schemaChanged (0); schemaCombo->setEnabled (schemaCombo->count() > 0); } void KateSchemaConfigPage::deleteSchema () { int t = schemaCombo->currentItem (); KateFactory::self()->schemaManager()->removeSchema (t); update (); } void KateSchemaConfigPage::newSchema () { TQString t = KInputDialog::getText (i18n("Name for New Schema"), i18n ("Name:"), i18n("New Schema"), 0, this); KateFactory::self()->schemaManager()->addSchema (t); // soft update, no load from disk KateFactory::self()->schemaManager()->update (false); int i = KateFactory::self()->schemaManager()->list ().findIndex (t); update (); if (i > -1) { schemaCombo->setCurrentItem (i); schemaChanged (i); } } void KateSchemaConfigPage::schemaChanged (int schema) { btndel->setEnabled( schema > 1 ); m_colorTab->schemaChanged( schema ); m_fontTab->schemaChanged( schema ); m_fontColorTab->schemaChanged (schema); m_highlightTab->schemaChanged (schema); m_lastSchema = schema; } void KateSchemaConfigPage::newCurrentPage (TQWidget *w) { if (w == m_highlightTab) m_highlightTab->schemaChanged (m_lastSchema); } //END KateSchemaConfigPage //BEGIN SCHEMA ACTION -- the 'View->Schema' menu action void KateViewSchemaAction::init() { m_view = 0; last = 0; connect(popupMenu(),TQT_SIGNAL(aboutToShow()),this,TQT_SLOT(slotAboutToShow())); } void KateViewSchemaAction::updateMenu (KateView *view) { m_view = view; } void KateViewSchemaAction::slotAboutToShow() { KateView *view=m_view; int count = KateFactory::self()->schemaManager()->list().count(); for (int z=0; zschemaManager()->list().operator[](z); if (names.contains(hlName) < 1) { names << hlName; popupMenu()->insertItem ( hlName, this, TQT_SLOT(setSchema(int)), 0, z+1); } } if (!view) return; popupMenu()->setItemChecked (last, false); popupMenu()->setItemChecked (view->renderer()->config()->schema()+1, true); last = view->renderer()->config()->schema()+1; } void KateViewSchemaAction::setSchema (int mode) { KateView *view=m_view; if (view) view->renderer()->config()->setSchema (mode-1); } //END SCHEMA ACTION //BEGIN KateStyleListView KateStyleListView::KateStyleListView( TQWidget *parent, bool showUseDefaults ) : TQListView( parent ) { setSorting( -1 ); // disable sorting, let the styles appear in their defined order addColumn( i18n("Context") ); addColumn( SmallIconSet("text_bold"), TQString::null ); addColumn( SmallIconSet("text_italic"), TQString::null ); addColumn( SmallIconSet("text_under"), TQString::null ); addColumn( SmallIconSet("text_strike"), TQString::null ); addColumn( i18n("Normal") ); addColumn( i18n("Selected") ); addColumn( i18n("Background") ); addColumn( i18n("Background Selected") ); if ( showUseDefaults ) addColumn( i18n("Use Default Style") ); connect( this, TQT_SIGNAL(mouseButtonPressed(int, TQListViewItem*, const TQPoint&, int)), this, TQT_SLOT(slotMousePressed(int, TQListViewItem*, const TQPoint&, int)) ); connect( this, TQT_SIGNAL(contextMenuRequested(TQListViewItem*,const TQPoint&, int)), this, TQT_SLOT(showPopupMenu(TQListViewItem*, const TQPoint&)) ); // grap the bg color, selected color and default font normalcol = TDEGlobalSettings::textColor(); bgcol = KateRendererConfig::global()->backgroundColor(); selcol = KateRendererConfig::global()->selectionColor(); docfont = *KateRendererConfig::global()->font(); viewport()->setPaletteBackgroundColor( bgcol ); } void KateStyleListView::showPopupMenu( KateStyleListItem *i, const TQPoint &globalPos, bool showtitle ) { if ( !dynamic_cast(i) ) return; TDEPopupMenu m( this ); KateAttribute *is = i->style(); int id; // the title is used, because the menu obscures the context name when // displayed on behalf of spacePressed(). TQPixmap cl(16,16); cl.fill( i->style()->textColor() ); TQPixmap scl(16,16); scl.fill( i->style()->selectedTextColor() ); TQPixmap bgcl(16,16); bgcl.fill( i->style()->itemSet(KateAttribute::BGColor) ? i->style()->bgColor() : viewport()->colorGroup().base() ); TQPixmap sbgcl(16,16); sbgcl.fill( i->style()->itemSet(KateAttribute::SelectedBGColor) ? i->style()->selectedBGColor() : viewport()->colorGroup().base() ); if ( showtitle ) m.insertTitle( i->contextName(), KateStyleListItem::ContextName ); id = m.insertItem( i18n("&Bold"), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::Bold ); m.setItemChecked( id, is->bold() ); id = m.insertItem( i18n("&Italic"), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::Italic ); m.setItemChecked( id, is->italic() ); id = m.insertItem( i18n("&Underline"), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::Underline ); m.setItemChecked( id, is->underline() ); id = m.insertItem( i18n("S&trikeout"), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::Strikeout ); m.setItemChecked( id, is->strikeOut() ); m.insertSeparator(); m.insertItem( TQIconSet(cl), i18n("Normal &Color..."), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::Color ); m.insertItem( TQIconSet(scl), i18n("&Selected Color..."), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::SelColor ); m.insertItem( TQIconSet(bgcl), i18n("&Background Color..."), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::BgColor ); m.insertItem( TQIconSet(sbgcl), i18n("S&elected Background Color..."), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::SelBgColor ); // Unset [some] colors. I could show one only if that button was clicked, but that // would disable setting this with the keyboard (how many aren't doing just // that every day? ;) // ANY ideas for doing this in a nicer way will be warmly wellcomed. KateAttribute *style = i->style(); if ( style->itemSet( KateAttribute::BGColor) || style->itemSet( KateAttribute::SelectedBGColor ) ) { m.insertSeparator(); if ( style->itemSet( KateAttribute::BGColor) ) m.insertItem( i18n("Unset Background Color"), this, TQT_SLOT(unsetColor(int)), 0, 100 ); if ( style->itemSet( KateAttribute::SelectedBGColor ) ) m.insertItem( i18n("Unset Selected Background Color"), this, TQT_SLOT(unsetColor(int)), 0, 101 ); } if ( ! i->isDefault() && ! i->defStyle() ) { m.insertSeparator(); id = m.insertItem( i18n("Use &Default Style"), this, TQT_SLOT(mSlotPopupHandler(int)), 0, KateStyleListItem::UseDefStyle ); m.setItemChecked( id, i->defStyle() ); } m.exec( globalPos ); } void KateStyleListView::showPopupMenu( TQListViewItem *i, const TQPoint &pos ) { if ( dynamic_cast(i) ) showPopupMenu( (KateStyleListItem*)i, pos, true ); } void KateStyleListView::mSlotPopupHandler( int z ) { ((KateStyleListItem*)currentItem())->changeProperty( (KateStyleListItem::Property)z ); } void KateStyleListView::unsetColor( int c ) { ((KateStyleListItem*)currentItem())->unsetColor( c ); emitChanged(); } // Because TQListViewItem::activatePos() is going to become deprecated, // and also because this attempt offers more control, I connect mousePressed to this. void KateStyleListView::slotMousePressed(int btn, TQListViewItem* i, const TQPoint& pos, int c) { if ( dynamic_cast(i) ) { if ( btn == Qt::LeftButton && c > 0 ) { // map pos to item/column and call KateStyleListItem::activate(col, pos) ((KateStyleListItem*)i)->activate( c, viewport()->mapFromGlobal( pos ) - TQPoint( 0, itemRect(i).top() ) ); } } } //END //BEGIN KateStyleListItem static const int BoxSize = 16; static const int ColorBtnWidth = 32; KateStyleListItem::KateStyleListItem( TQListViewItem *parent, const TQString & stylename, KateAttribute *style, KateHlItemData *data ) : TQListViewItem( parent, stylename ), ds( style ), st( data ) { initStyle(); } KateStyleListItem::KateStyleListItem( TQListView *parent, const TQString & stylename, KateAttribute *style, KateHlItemData *data ) : TQListViewItem( parent, stylename ), ds( style ), st( data ) { initStyle(); } void KateStyleListItem::initStyle() { if (!st) is = ds; else { is = new KateAttribute (*ds); if (st->isSomethingSet()) *is += *st; } } void KateStyleListItem::updateStyle() { // nothing there, not update it, will crash if (!st) return; if ( is->itemSet(KateAttribute::Weight) ) { if ( is->weight() != st->weight()) st->setWeight( is->weight() ); } else st->clearAttribute( KateAttribute::Weight ); if ( is->itemSet(KateAttribute::Italic) ) { if ( is->italic() != st->italic()) st->setItalic( is->italic() ); } else st->clearAttribute( KateAttribute::Italic ); if ( is->itemSet(KateAttribute::StrikeOut) ) { if ( is->strikeOut() != st->strikeOut()) st->setStrikeOut( is->strikeOut() ); } else st->clearAttribute( KateAttribute::StrikeOut ); if ( is->itemSet(KateAttribute::Underline) ) { if ( is->underline() != st->underline()) st->setUnderline( is->underline() ); } else st->clearAttribute( KateAttribute::Underline ); if ( is->itemSet(KateAttribute::Outline) ) { if ( is->outline() != st->outline()) st->setOutline( is->outline() ); } else st->clearAttribute( KateAttribute::Outline ); if ( is->itemSet(KateAttribute::TextColor) ) { if ( is->textColor() != st->textColor()) st->setTextColor( is->textColor() ); } else st->clearAttribute( KateAttribute::TextColor ); if ( is->itemSet(KateAttribute::SelectedTextColor) ) { if ( is->selectedTextColor() != st->selectedTextColor()) st->setSelectedTextColor( is->selectedTextColor() ); } else st->clearAttribute( KateAttribute::SelectedTextColor); if ( is->itemSet(KateAttribute::BGColor) ) { if ( is->bgColor() != st->bgColor()) st->setBGColor( is->bgColor() ); } else st->clearAttribute( KateAttribute::BGColor ); if ( is->itemSet(KateAttribute::SelectedBGColor) ) { if ( is->selectedBGColor() != st->selectedBGColor()) st->setSelectedBGColor( is->selectedBGColor() ); } else st->clearAttribute( KateAttribute::SelectedBGColor ); } /* only true for a hl mode item using it's default style */ bool KateStyleListItem::defStyle() { return st && st->itemsSet() != ds->itemsSet(); } /* true for default styles */ bool KateStyleListItem::isDefault() { return st ? false : true; } int KateStyleListItem::width( const TQFontMetrics & /*fm*/, const TQListView * lv, int col ) const { int m = lv->itemMargin() * 2; switch ( col ) { case ContextName: // FIXME: width for name column should reflect bold/italic // (relevant for non-fixed fonts only - nessecary?) return TQListViewItem::width( TQFontMetrics( ((KateStyleListView*)lv)->docfont), lv, col); case Bold: case Italic: case UseDefStyle: return BoxSize + m; case Color: case SelColor: case BgColor: case SelBgColor: return ColorBtnWidth +m; default: return 0; } } void KateStyleListItem::activate( int column, const TQPoint &localPos ) { TQListView *lv = listView(); int x = 0; for( int c = 0; c < column-1; c++ ) x += lv->columnWidth( c ); int w; switch( column ) { case Bold: case Italic: case Underline: case Strikeout: case UseDefStyle: w = BoxSize; break; case Color: case SelColor: case BgColor: case SelBgColor: w = ColorBtnWidth; break; default: return; } if ( !TQRect( x, 0, w, BoxSize ).contains( localPos ) ) changeProperty( (Property)column ); } void KateStyleListItem::changeProperty( Property p ) { if ( p == Bold ) is->setBold( ! is->bold() ); else if ( p == Italic ) is->setItalic( ! is->italic() ); else if ( p == Underline ) is->setUnderline( ! is->underline() ); else if ( p == Strikeout ) is->setStrikeOut( ! is->strikeOut() ); else if ( p == UseDefStyle ) toggleDefStyle(); else setColor( p ); updateStyle (); ((KateStyleListView*)listView())->emitChanged(); } void KateStyleListItem::toggleDefStyle() { if ( *is == *ds ) { KMessageBox::information( listView(), i18n("\"Use Default Style\" will be automatically unset when you change any style properties."), i18n("Kate Styles"), "Kate hl config use defaults" ); } else { delete is; is = new KateAttribute( *ds ); updateStyle(); repaint(); } } void KateStyleListItem::setColor( int column ) { TQColor c; // use this TQColor d; // default color if ( column == Color) { c = is->textColor(); d = ds->textColor(); } else if ( column == SelColor ) { c = is->selectedTextColor(); d = is->selectedTextColor(); } else if ( column == BgColor ) { c = is->bgColor(); d = ds->bgColor(); } else if ( column == SelBgColor ) { c = is->selectedBGColor(); d = ds->selectedBGColor(); } if ( KColorDialog::getColor( c, d, listView() ) != TQDialog::Accepted) return; bool def = ! c.isValid(); // if set default, and the attrib is set in the default style use it // else if set default, unset it // else set the selected color switch (column) { case Color: if ( def ) { if ( ds->itemSet(KateAttribute::TextColor) ) is->setTextColor( ds->textColor()); else is->clearAttribute(KateAttribute::TextColor); } else is->setTextColor( c ); break; case SelColor: if ( def ) { if ( ds->itemSet(KateAttribute::SelectedTextColor) ) is->setSelectedTextColor( ds->selectedTextColor()); else is->clearAttribute(KateAttribute::SelectedTextColor); } else is->setSelectedTextColor( c ); break; case BgColor: if ( def ) { if ( ds->itemSet(KateAttribute::BGColor) ) is->setBGColor( ds->bgColor()); else is->clearAttribute(KateAttribute::BGColor); } else is->setBGColor( c ); break; case SelBgColor: if ( def ) { if ( ds->itemSet(KateAttribute::SelectedBGColor) ) is->setSelectedBGColor( ds->selectedBGColor()); else is->clearAttribute(KateAttribute::SelectedBGColor); } else is->setSelectedBGColor( c ); break; } repaint(); } void KateStyleListItem::unsetColor( int c ) { if ( c == 100 && is->itemSet(KateAttribute::BGColor) ) is->clearAttribute(KateAttribute::BGColor); else if ( c == 101 && is->itemSet(KateAttribute::SelectedBGColor) ) is->clearAttribute(KateAttribute::SelectedBGColor); updateStyle(); } void KateStyleListItem::paintCell( TQPainter *p, const TQColorGroup& /*cg*/, int col, int width, int align ) { if ( !p ) return; TQListView *lv = listView(); if ( !lv ) return; Q_ASSERT( lv ); //### // use a private color group and set the text/highlighted text colors TQColorGroup mcg = lv->viewport()->colorGroup(); if ( col ) // col 0 is drawn by the superclass method p->fillRect( 0, 0, width, height(), TQBrush( mcg.base() ) ); int marg = lv->itemMargin(); TQColor c; switch ( col ) { case ContextName: { mcg.setColor(TQColorGroup::Text, is->textColor()); mcg.setColor(TQColorGroup::HighlightedText, is->selectedTextColor()); // text background color c = is->bgColor(); if ( c.isValid() && is->itemSet(KateAttribute::BGColor) ) mcg.setColor( TQColorGroup::Base, c ); if ( isSelected() && is->itemSet(KateAttribute::SelectedBGColor) ) { c = is->selectedBGColor(); if ( c.isValid() ) mcg.setColor( TQColorGroup::Highlight, c ); } TQFont f ( ((KateStyleListView*)lv)->docfont ); p->setFont( is->font(f) ); // FIXME - repainting when text is cropped, and the column is enlarged is buggy. // Maybe I need painting the string myself :( // (wilbert) it depends on the font used TQListViewItem::paintCell( p, mcg, col, width, align ); } break; case Bold: case Italic: case Underline: case Strikeout: case UseDefStyle: { // Bold/Italic/use default checkboxes // code allmost identical to QCheckListItem int x = 0; int y = (height() - BoxSize) / 2; if ( isEnabled() ) p->setPen( TQPen( mcg.text(), 2 ) ); else p->setPen( TQPen( lv->palette().color( TQPalette::Disabled, TQColorGroup::Text ), 2 ) ); p->drawRect( x+marg, y+2, BoxSize-4, BoxSize-4 ); x++; y++; if ( (col == Bold && is->bold()) || (col == Italic && is->italic()) || (col == Underline && is->underline()) || (col == Strikeout && is->strikeOut()) || (col == UseDefStyle && *is == *ds ) ) { TQPointArray a( 7*2 ); int i, xx, yy; xx = x+1+marg; yy = y+5; for ( i=0; i<3; i++ ) { a.setPoint( 2*i, xx, yy ); a.setPoint( 2*i+1, xx, yy+2 ); xx++; yy++; } yy -= 2; for ( i=3; i<7; i++ ) { a.setPoint( 2*i, xx, yy ); a.setPoint( 2*i+1, xx, yy+2 ); xx++; yy--; } p->drawLineSegments( a ); } } break; case Color: case SelColor: case BgColor: case SelBgColor: { bool set( false ); if ( col == Color) { c = is->textColor(); set = is->itemSet(KateAttribute::TextColor); } else if ( col == SelColor ) { c = is->selectedTextColor(); set = is->itemSet( KateAttribute::SelectedTextColor); } else if ( col == BgColor ) { set = is->itemSet(KateAttribute::BGColor); c = set ? is->bgColor() : mcg.base(); } else if ( col == SelBgColor ) { set = is->itemSet(KateAttribute::SelectedBGColor); c = set ? is->selectedBGColor(): mcg.base(); } // color "buttons" int x = 0; int y = (height() - BoxSize) / 2; if ( isEnabled() ) p->setPen( TQPen( mcg.text(), 2 ) ); else p->setPen( TQPen( lv->palette().color( TQPalette::Disabled, TQColorGroup::Text ), 2 ) ); p->drawRect( x+marg, y+2, ColorBtnWidth-4, BoxSize-4 ); p->fillRect( x+marg+1,y+3,ColorBtnWidth-7,BoxSize-7,TQBrush( c ) ); // if this item is unset, draw a diagonal line over the button if ( ! set ) p->drawLine( x+marg-1, BoxSize-3, ColorBtnWidth-4, y+1 ); } //case default: // no warning... } } //END //BEGIN KateStyleListCaption KateStyleListCaption::KateStyleListCaption( TQListView *parent, const TQString & name ) : TQListViewItem( parent, name ) { } void KateStyleListCaption::paintCell( TQPainter *p, const TQColorGroup& /*cg*/, int col, int width, int align ) { TQListView *lv = listView(); if ( !lv ) return; Q_ASSERT( lv ); //### // use the same colorgroup as the other items in the viewport TQColorGroup mcg = lv->viewport()->colorGroup(); TQListViewItem::paintCell( p, mcg, col, width, align ); } //END // kate: space-indent on; indent-width 2; replace-tabs on;