src/configDialog.h

Mon, 02 Jun 2014 13:35:41 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Mon, 02 Jun 2014 13:35:41 +0300
changeset 787
67cc5b47bbff
parent 780
b0d84fb70ea5
child 789
4b7306f52bb5
permissions
-rw-r--r--

- made select by color/type no longer require uniform selection

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013, 2014 Santeri Piippo
 *
 *  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 3 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, see <http://www.gnu.org/licenses/>.
 */

#pragma once
#include "mainWindow.h"
#include <QDialog>

class Ui_ConfigUI;
class QLabel;
class QDoubleSpinBox;

// =============================================================================
class ShortcutListItem : public QListWidgetItem
{
	PROPERTY (public,	KeySequenceConfigEntry*,	keyConfig,	setKeyConfig,	STOCK_WRITE)
	PROPERTY (public,	QAction*,					action,		setAction,		STOCK_WRITE)

	public:
		explicit ShortcutListItem (QListWidget* view = null, int type = Type) :
			QListWidgetItem (view, type) {}
};

// =============================================================================
class ConfigDialog : public QDialog
{
	Q_OBJECT

	public:
		enum Tab
		{
			InterfaceTab,
			EditingToolsTab,
			ProfileTab,
			ShortcutsTab,
			QuickColorsTab,
			GridsTab,
			ExtProgsTab,
			DownloadTab
		};

		explicit ConfigDialog (Tab deftab = InterfaceTab, QWidget* parent = null, Qt::WindowFlags f = 0);
		virtual ~ConfigDialog();

		QList<LDQuickColor> quickColors;

	private:
		Ui_ConfigUI* ui;
		QList<QListWidgetItem*> quickColorItems;

		void applySettings();
		void addShortcut (KeySequenceConfigEntry& cfg, QAction* act, int& i);
		void setButtonBackground (QPushButton* button, String value);
		void pickColor (String& conf, QPushButton* button);
		void updateQuickColorList (LDQuickColor* sel = null);
		void setShortcutText (ShortcutListItem* item);
		int getItemRow (QListWidgetItem* item, QList<QListWidgetItem*>& haystack);
		String quickColorString();
		QListWidgetItem* getSelectedQuickColor();
		QList<ShortcutListItem*> getShortcutSelection();
		void initExtProgs();

	private slots:
		void slot_setGLBackground();
		void slot_setGLForeground();
		void slot_setGLSelectColor();
		void slot_setShortcut();
		void slot_resetShortcut();
		void slot_clearShortcut();
		void slot_setColor();
		void slot_delColor();
		void slot_addColorSeparator();
		void slot_moveColor();
		void slot_clearColors();
		void slot_setExtProgPath();
		void slot_findDownloadFolder();
		void buttonClicked (QAbstractButton* button);
		void selectPage (int row);
};

// =============================================================================
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// =============================================================================
class KeySequenceDialog : public QDialog
{
	Q_OBJECT

	public:
		explicit KeySequenceDialog (QKeySequence seq, QWidget* parent = null, Qt::WindowFlags f = 0);
		static bool staticDialog (KeySequenceConfigEntry* cfg, QWidget* parent = null);

		QLabel* lb_output;
		QDialogButtonBox* bbx_buttons;
		QKeySequence seq;

	private:
		void updateOutput();

	private slots:
		virtual void keyPressEvent (QKeyEvent* ev) override;
};

mercurial