mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
82 lines
2.1 KiB
C++
82 lines
2.1 KiB
C++
/* This file is part of the KDE libraries and the Kate part.
|
|
*
|
|
* Copyright (C) 2006 Hamish Rodda <rodda@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef KATECOMPLETIONCONFIG_H
|
|
#define KATECOMPLETIONCONFIG_H
|
|
|
|
#include <kdialog.h>
|
|
|
|
#include "kateconfig.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class CompletionConfigWidget; }
|
|
QT_END_NAMESPACE
|
|
|
|
#include <QTreeWidgetItem>
|
|
class KateCompletionModel;
|
|
|
|
/**
|
|
* @author Hamish Rodda <rodda@kde.org>
|
|
*/
|
|
class KateCompletionConfig : public KDialog, public KateConfig
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit KateCompletionConfig(KateCompletionModel* model, QWidget* parent = 0L);
|
|
virtual ~KateCompletionConfig();
|
|
|
|
/**
|
|
* Read config from object
|
|
*/
|
|
void readConfig (const KConfigGroup &config);
|
|
|
|
/**
|
|
* Write config to object
|
|
*/
|
|
void writeConfig (KConfigGroup &config);
|
|
|
|
public Q_SLOTS:
|
|
void apply();
|
|
|
|
protected:
|
|
virtual void updateConfig();
|
|
|
|
private Q_SLOTS:
|
|
void moveColumnUp();
|
|
void moveColumnDown();
|
|
void moveGroupingUp();
|
|
void moveGroupingDown();
|
|
void moveGroupingOrderUp();
|
|
void moveGroupingOrderDown();
|
|
|
|
private:
|
|
void applyInternal();
|
|
|
|
Ui::CompletionConfigWidget* ui;
|
|
KateCompletionModel* m_model;
|
|
|
|
QTreeWidgetItem* m_groupingScopeType;
|
|
QTreeWidgetItem* m_groupingScope;
|
|
QTreeWidgetItem* m_groupingAccessType;
|
|
QTreeWidgetItem* m_groupingItemType;
|
|
};
|
|
|
|
#endif
|