diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-23 20:48:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-29 15:16:28 +0900 |
commit | 8b78a8791bc539bcffe7159f9d9714d577cb3d7d (patch) | |
tree | 1328291f966f19a22d7b13657d3f01a588eb1083 /chalk/ui/kis_palette_view.cc | |
parent | 95834e2bdc5e01ae1bd21ac0dfa4fa1d2417fae9 (diff) | |
download | koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.tar.gz koffice-8b78a8791bc539bcffe7159f9d9714d577cb3d7d.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'chalk/ui/kis_palette_view.cc')
-rw-r--r-- | chalk/ui/kis_palette_view.cc | 150 |
1 files changed, 0 insertions, 150 deletions
diff --git a/chalk/ui/kis_palette_view.cc b/chalk/ui/kis_palette_view.cc deleted file mode 100644 index 2e17f651..00000000 --- a/chalk/ui/kis_palette_view.cc +++ /dev/null @@ -1,150 +0,0 @@ -/* - * Copyright (c) 2005 Boudewijn Rempt <boud@valdyas.org> - * (c) 2005 Bart Coppens <kde@bartcoppens.be> - * - * Based on already much changed code by Waldo Bastian <bastian@kde.org> from KisPaletteWidget - * - * 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; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ - -#include <stdio.h> -#include <stdlib.h> - -#include <tqcheckbox.h> -#include <tqcombobox.h> -#include <tqdrawutil.h> -#include <tqevent.h> -#include <tqfile.h> -#include <tqimage.h> -#include <tqlabel.h> -#include <tqlayout.h> -#include <tqlineedit.h> -#include <tqvalidator.h> -#include <tqpainter.h> -#include <tqpushbutton.h> -#include <tqspinbox.h> -#include <tqtimer.h> - -#include <tdeapplication.h> -#include <tdeconfig.h> -#include <tdeglobal.h> -#include <tdeglobalsettings.h> -#include <kiconloader.h> -#include <tdelistbox.h> -#include <tdelocale.h> -#include <tdemessagebox.h> -#include <kseparator.h> -#include <kpalette.h> -#include <kimageeffect.h> - -#include <kcolordialog.h> -#include <kcolordrag.h> -#include <config.h> -#include <kdebug.h> - -#include <kis_meta_registry.h> -#include <kis_color.h> -#include <kis_factory.h> -#include <kis_colorspace_factory_registry.h> -#include "kis_palette_view.h" -#include "kis_resource.h" -#include "kis_palette.h" - -KisPaletteView::KisPaletteView(TQWidget *parent, const char* name, int minWidth, int cols) - : TQScrollView( parent, name ), mMinWidth(minWidth), mCols(cols) -{ - m_cells = 0; - m_currentPalette = 0; - - TQSize cellSize = TQSize( mMinWidth, 50); - - setHScrollBarMode(TQScrollView::AlwaysOff); - setVScrollBarMode(TQScrollView::AlwaysOn); - - TQSize minSize = TQSize(verticalScrollBar()->width(), 0); - minSize += TQSize(frameWidth(), 0); - minSize += TQSize(cellSize); - - setMinimumSize(minSize); - setSizePolicy(TQSizePolicy(TQSizePolicy::Ignored, TQSizePolicy::Ignored)); -} - -KisPaletteView::~KisPaletteView() -{ -} - -KisPalette* KisPaletteView::palette() const -{ - return m_currentPalette; -} - -void KisPaletteView::setPalette(KisPalette* palette) -{ - m_currentPalette = palette; - delete m_cells; - - int rows = (m_currentPalette->nColors() + mCols -1 ) / mCols; - - if (rows < 1) rows = 1; - - m_cells = new KColorCells(viewport(), rows, mCols); - TQ_CHECK_PTR(m_cells); - - m_cells->setShading(false); - m_cells->setAcceptDrags(false); - - TQSize cellSize = TQSize( mMinWidth, mMinWidth * rows / mCols); - m_cells->setFixedSize( cellSize ); - - for( int i = 0; i < m_currentPalette->nColors(); i++) - { - TQColor c = m_currentPalette->getColor(i).color; - m_cells->setColor( i, c ); - } - - connect(m_cells, TQT_SIGNAL(colorSelected(int)), - TQT_SLOT(slotColorCellSelected(int))); - - connect(m_cells, TQT_SIGNAL(colorDoubleClicked(int)), - TQT_SLOT(slotColorCellDoubleClicked(int)) ); - - addChild( m_cells ); - m_cells->show(); - updateScrollBars(); -} - -void KisPaletteView::slotColorCellSelected( int col ) -{ - KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getRGB8(); - if (!m_currentPalette || (col >= m_currentPalette->nColors())) - return; - - m_currentEntry = m_currentPalette->getColor(col); - emit colorSelected(KisColor(m_currentPalette->getColor(col).color, cs)); - emit colorSelected(m_currentPalette->getColor(col).color); -} - -void KisPaletteView::slotColorCellDoubleClicked( int col ) -{ - KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getRGB8(); - if (!m_currentPalette || (col >= m_currentPalette->nColors())) - return; - - emit colorDoubleClicked(KisColor(m_currentPalette->getColor(col).color, cs), - m_currentPalette->getColor(col).name); -} - -#include "kis_palette_view.moc" - |