mirror of
				https://github.com/python-LimeReport/LimeReport.git
				synced 2025-11-04 07:31:23 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			110 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/***************************************************************************
 | 
						|
 *   This file is part of the Lime Report project                          *
 | 
						|
 *   Copyright (C) 2015 by Alexander Arin                                  *
 | 
						|
 *   arin_a@bk.ru                                                          *
 | 
						|
 *                                                                         *
 | 
						|
 **                   GNU General Public License Usage                    **
 | 
						|
 *                                                                         *
 | 
						|
 *   This library 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.                                   *
 | 
						|
 *   You should have received a copy of the GNU General Public License     *
 | 
						|
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 | 
						|
 *                                                                         *
 | 
						|
 **                  GNU Lesser General Public License                    **
 | 
						|
 *                                                                         *
 | 
						|
 *   This library is free software: you can redistribute it and/or modify  *
 | 
						|
 *   it under the terms of the GNU Lesser General Public License as        *
 | 
						|
 *   published by the Free Software Foundation, either version 3 of the    *
 | 
						|
 *   License, or (at your option) any later version.                       *
 | 
						|
 *   You should have received a copy of the GNU Lesser General Public      *
 | 
						|
 *   License along with this library.                                      *
 | 
						|
 *   If not, see <http://www.gnu.org/licenses/>.                           *
 | 
						|
 *                                                                         *
 | 
						|
 *   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 General Public License for more details.                          *
 | 
						|
 ****************************************************************************/
 | 
						|
#ifndef LRTEXTITEMEDITOR_H
 | 
						|
#define LRTEXTITEMEDITOR_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
#include <QTextEdit>
 | 
						|
#include <QCompleter>
 | 
						|
 | 
						|
#include "lrtextitem.h"
 | 
						|
#include "lrpagedesignintf.h"
 | 
						|
 | 
						|
namespace LimeReport{
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class TextItemEditor;
 | 
						|
}
 | 
						|
 | 
						|
class CompleaterTextEditor :public QTextEdit
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
public:
 | 
						|
    CompleaterTextEditor(QWidget* parent=0);
 | 
						|
    void setCompleter(QCompleter* value);
 | 
						|
    QCompleter* compleater() const{ return m_compleater;}
 | 
						|
protected:
 | 
						|
    virtual void keyPressEvent(QKeyEvent *e);
 | 
						|
    virtual void focusInEvent(QFocusEvent *e);
 | 
						|
private:
 | 
						|
    QString textUnderCursor() const;
 | 
						|
private slots:
 | 
						|
    void insertCompletion(const QString& completion);
 | 
						|
private:
 | 
						|
    QCompleter* m_compleater;
 | 
						|
};
 | 
						|
 | 
						|
class TextItemEditor : public QWidget
 | 
						|
{
 | 
						|
    Q_OBJECT  
 | 
						|
public:
 | 
						|
    explicit TextItemEditor(LimeReport::TextItem* item, LimeReport::PageDesignIntf* page,
 | 
						|
                             QSettings* settings=0, QWidget *parent = 0);
 | 
						|
    ~TextItemEditor();
 | 
						|
    void setSettings(QSettings* value);
 | 
						|
    QSettings* settings();
 | 
						|
protected:
 | 
						|
    void resizeEvent(QResizeEvent *);
 | 
						|
    void moveEvent(QMoveEvent *);
 | 
						|
private slots:
 | 
						|
    void on_pbOk_clicked();
 | 
						|
    void on_pbCancel_clicked();
 | 
						|
    void slotFieldSelected();
 | 
						|
    void on_twData_doubleClicked(const QModelIndex &index);
 | 
						|
    void on_twScriptEngine_doubleClicked(const QModelIndex &index);
 | 
						|
    void on_splitter_splitterMoved(int, int);
 | 
						|
    void on_editorFont_currentFontChanged(const QFont &f);
 | 
						|
    void on_editorFontSize_valueChanged(int arg1);
 | 
						|
    void on_toolButton_clicked(bool checked);
 | 
						|
    void on_twScriptEngine_activated(const QModelIndex &index);
 | 
						|
    void slotScriptItemsSelectionChanged(const QModelIndex &to, const QModelIndex);
 | 
						|
private:
 | 
						|
    void initUI();
 | 
						|
    void readSetting();
 | 
						|
    void writeSetting();
 | 
						|
    QStringListModel* getDataSources();
 | 
						|
    QStringListModel* getPrefixes();
 | 
						|
    QStringListModel* getColumns(QString datasource);
 | 
						|
private:
 | 
						|
    Ui::TextItemEditor *ui;
 | 
						|
    LimeReport::TextItem* m_textItem;
 | 
						|
    LimeReport::PageDesignIntf* m_page;
 | 
						|
    QMenu* m_datasourcesMenu;
 | 
						|
    CompleaterTextEditor* m_teContent;
 | 
						|
    QCompleter* m_completer;
 | 
						|
    QSettings* m_settings;
 | 
						|
    bool m_ownedSettings;
 | 
						|
    bool m_isReadingSetting;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace LimeReport
 | 
						|
 | 
						|
#endif // LRTEXTITEMEDITOR_H
 |