Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
koffice/kspread/kspread_editors.h

324 righe
8.4 KiB

/* This file is part of the KDE project
Copyright 1999-2006 The KSpread Team <koffice-devel@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 __kspread_editors_h__
#define __kspread_editors_h__
#include <vector>
#include <tqsyntaxhighlighter.h>
#include <tqwidget.h>
#include <kcombobox.h>
#include <klineedit.h>
#include <ksharedptr.h>
class KTextEdit;
class TQFont;
class TQButton;
class TQTextCursor;
namespace KSpread
{
class Canvas;
class Cell;
class CellEditor;
class LocationEditWidget;
class Region;
class Sheet;
class Tokens;
class View;
/**
* Colours cell references in formulas. Installed by CellEditor instances in
* the constructor.
*/
class FormulaEditorHighlighter : public TQSyntaxHighlighter
{
public:
/**
* Constructs a FormulaHighlighter to colour-code cell references in a TQTextEdit.
*
* @param textEdit The TQTextEdit widget which the highlighter should operate on
* @param canvas The Canvas object
*/
FormulaEditorHighlighter(TQTextEdit* textEdit, Canvas* canvas);
virtual ~FormulaEditorHighlighter();
/**
* Called automatically by KTextEditor to highlight text when modified.
*/
virtual int highlightParagraph(const TQString& text, int endStateOfLastPara);
/**
*
*/
const Tokens& formulaTokens() const;
/**
*
*/
uint rangeCount() const;
/**
* Returns true if any of the ranges or cells in the formula have changed since the
* last call to @ref FormulaEditorHighlighter::rangeChanged()
*/
bool rangeChanged() const;
/**
* Sets the highlighter's range changed flag to false.
*/
void resetRangeChanged();
protected:
/**
* Returns the position of the brace matching the one found at position pos
*/
int findMatchingBrace(int pos);
/**
* Examines the brace (Token::LeftPar or Token::RightPar) operator token at the given index in the token vector
* ( as returned by formulaTokens() ) and if the cursor is next to it, the token plus any matching brace will be highlighted
*/
void handleBrace(uint index);
private:
class Private;
Private* d;
};
/**
* Provides autocompletition facilities in formula editors.
* When the user types in the first few characters of a
* function name in a CellEditor which has a FunctionCompletion
* object installed on it, the FunctionCompletion object
* creates and displays a list of possible names which the user
* can select from. If the user selects a function name from the list,
* the @ref FunctionCompletion::selectedCompletion() signal is emitted
*/
class FunctionCompletion : public TQObject
{
Q_OBJECT
public:
FunctionCompletion( CellEditor* editor );
~FunctionCompletion();
/**
* Handles various keyboard and mouse actions which may occur on the autocompletion popup list
*/
bool eventFilter( TQObject *o, TQEvent *e );
/**
* Hides the autocompletion list box if it is visible and emits the @ref selectedCompletion signal.
*/
void doneCompletion();
/**
* Populates the autocompletion list box with the specified choices and shows it so that the user can view and select a function name.
* @param choices A list of possible function names which match the characters that the user has already entered.
*/
void showCompletion( const TQStringList &choices );
private slots:
void itemSelected( const TQString& item );
signals:
/**
* Emitted, if the user selects a function name from the list.
*/
void selectedCompletion( const TQString& item );
private:
class Private;
Private* d;
FunctionCompletion( const FunctionCompletion& );
FunctionCompletion& operator=( const FunctionCompletion& );
};
/**
* class CellEditor
*/
class CellEditor : public TQWidget
{
Q_OBJECT
public:
/**
* Creates a new CellEditor.
* @param cell The spreadsheet cell to associate the cell text editor with
* @param _parent The @ref Canvas object to associate this cell text editor with
* @param captureAllKeyEvents Controls whether or not the text editor swallows arrow key events or sends them to the parent canvas instead. If this is set to true, pressing the arrow keys will navigate backwards and forwards through the text in the editor. If it is false, the key events will be sent to the parent canvas which will change the cell being edited (depending on the direction of the arrow pressed). Generally this should be set to true if the user double clicks on the cell to edit it, and false if the user initiates editing by typing whilst the cell is selected.
* @param _name This parameter is sent to the TQObject constructor
*/
CellEditor( Cell* cell, Canvas* _parent = 0, bool captureAllKeyEvents = false, const char* _name = 0 );
~CellEditor();
Cell* cell() const;
Canvas* canvas() const;
void handleKeyPressEvent( TQKeyEvent* _ev );
void handleIMEvent( TQIMEvent * _ev );
void setEditorFont(TQFont const & font, bool updateSize);
int cursorPosition() const;
void setCursorPosition(int pos);
void setText(TQString text);
/** wrapper to KTextEdit::text() */
TQString text() const;
/** wrapper to KTextEdit::cut() */
void cut();
/** wrapper to KTextEdit::paste() */
void paste();
/** wrapper to KTextEdit::copy() */
void copy();
TQPoint globalCursorPosition() const;
bool checkChoice();
void setCheckChoice(bool b);
void updateChoice();
void setUpdateChoice(bool);
void setCursorToRange(uint);
private slots:
void slotTextChanged();
void slotCompletionModeChanged(TDEGlobalSettings::Completion _completion);
void slotCursorPositionChanged(int para,int pos);
void slotTextCursorChanged(TQTextCursor*);
protected:
void resizeEvent( TQResizeEvent* );
/**
* Steals some key events from the TQLineEdit and sends
* it to the @ref Canvas ( its parent ) instead.
*/
bool eventFilter( TQObject* o, TQEvent* e );
protected slots:
void checkFunctionAutoComplete();
void triggerFunctionAutoComplete();
void functionAutoComplete( const TQString& item );
private:
class Private;
Private* d;
};
/**
* ComboboxLocationEditWidget
*/
class ComboboxLocationEditWidget : public KComboBox
{
Q_OBJECT
public:
ComboboxLocationEditWidget( TQWidget *_parent, View * _canvas );
public slots:
void slotAddAreaName( const TQString & );
void slotRemoveAreaName( const TQString & );
private:
LocationEditWidget *m_locationWidget;
};
/**
* A widget that allows the user to enter an arbitrary
* cell location to goto or cell selection to highlight
*/
class LocationEditWidget : public KLineEdit
{
Q_OBJECT
public:
LocationEditWidget( TQWidget *_parent, View * _canvas );
View * view() const { return m_pView;}
void addCompletionItem( const TQString &_item );
void removeCompletionItem( const TQString &_item );
private slots:
void slotActivateItem();
protected:
virtual void keyPressEvent( TQKeyEvent * _ev );
private:
View * m_pView;
TDECompletion completionList;
bool activateItem();
};
/**
* The widget that appears above the sheet and allows to
* edit the cells content.
*/
class EditWidget : public TQLineEdit
{
Q_OBJECT
public:
EditWidget( TQWidget *parent, Canvas *canvas,
TQButton *cancelButton, TQButton *okButton);
virtual void setText( const TQString& t );
// Go into edit mode (enable the buttons)
void setEditMode( bool mode );
void showEditWidget(bool _show);
public slots:
void slotAbortEdit();
void slotDoneEdit();
protected:
virtual void keyPressEvent ( TQKeyEvent* _ev );
virtual void focusOutEvent( TQFocusEvent* ev );
private:
TQButton* m_pCancelButton;
TQButton* m_pOkButton;
Canvas* m_pCanvas;
bool isArray;
};
} // namespace KSpread
#endif