diff options
Diffstat (limited to 'krita/ui/kis_palette_view.h')
-rw-r--r-- | krita/ui/kis_palette_view.h | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/krita/ui/kis_palette_view.h b/krita/ui/kis_palette_view.h deleted file mode 100644 index 79b3e0b0..00000000 --- a/krita/ui/kis_palette_view.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (c) 2005 Bart Coppens <kde@bartcoppens.be> - * (c) 2005 Boudewijn Rempt <boud@valdyas.org> - * - * 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. - */ - -#ifndef __KIS_PALETTE_VIEW_H__ -#define __KIS_PALETTE_VIEW_H__ - -#include <tqscrollview.h> -#include "kis_palette.h" - -class KListBox; -class KisPalette; -class KColorCells; -class KisResource; -class KisColor; - -/** - * A scrolling view that lists a single KisPalette - */ -class KisPaletteView : public TQScrollView -{ - Q_OBJECT - TQ_OBJECT -public: - KisPaletteView(TQWidget *tqparent, const char* name = 0, int minWidth=210, int cols = 16); - virtual ~KisPaletteView(); - - KisPalette* palette() const; - /// Might return the default constructed entry... - KisPaletteEntry currentEntry() const { return m_currentEntry; } - -public slots: - void setPalette(KisPalette* p); - -signals: - void colorSelected(const KisColor &); - void colorSelected(const TQColor &); - void colorDoubleClicked(const KisColor &, const TQString &); - -protected slots: - void slotColorCellSelected( int ); - void slotColorCellDoubleClicked( int ); - -protected: - KisPalette* m_currentPalette; - KColorCells* m_cells; - KisPaletteEntry m_currentEntry; - int mMinWidth; - int mCols; - - friend class KisPaletteWidget; // Because it calls slotColorCellSelected from a FIXME -}; - -#endif - |