diff --git a/kexi/migration/mysql/mysqlmigrate.h b/kexi/migration/mysql/mysqlmigrate.h index 3a79561b507..067c6697fee 100644 --- a/kexi/migration/mysql/mysqlmigrate.h +++ b/kexi/migration/mysql/mysqlmigrate.h @@ -1,82 +1,82 @@ /* This file is part of the KDE project Copyright (C) 2004 Martin Ellis This program 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 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef MYSQLMIGRATE_H #define MYSQLMIGRATE_H #include "migration/keximigrate.h" #include "kexidb/field.h" #include "kexidb/connection.h" #include "kexidb/drivers/mySQL/mysqlconnection_p.h" namespace KexiMigration { class MySQLMigrate : public KexiMigrate { Q_OBJECT private: MySqlConnectionInternal *d; protected: //Driver specific function to return table names virtual bool drv_tableNames(QStringList& tablenames); //Driver specific implementation to read a table schema virtual bool drv_readTableSchema(const QString table); //Driver specific connection implementation virtual bool drv_connect(); virtual bool drv_disconnect(); virtual bool drv_copyTable(const QString& srcTable, KexiDB::TableSchema* dstTable); virtual bool drv_progressSupported() { return true; } virtual bool drv_getTableSize(const QString& table, Q_ULLONG& size); //TODO: move this somewhere to low level class (MIGRATION?) // virtual bool drv_getTablesList( QStringList &list ); //TODO: move this somewhere to low level class (MIGRATION?) // virtual bool drv_containsTable( const QString &tableName ); public: ~MySQLMigrate(); //Constructor MySQLMigrate(); - MySQLMigrate::MySQLMigrate(QObject *parent, const char *name, const QStringList& args = QStringList()); + MySQLMigrate(QObject *parent, const char *name, const QStringList& args = QStringList()); KexiDB::Field::Type type(const QString& table, const MYSQL_FIELD* t); KexiDB::Field::Type examineBlobField(const QString& table, const MYSQL_FIELD* fld); QStringList examineEnumField(const QString& table, const MYSQL_FIELD* fld); - void MySQLMigrate::getConstraints(int mysqlConstraints, KexiDB::Field* fld); - void MySQLMigrate::getOptions(int flags, KexiDB::Field* fld); + void getConstraints(int mysqlConstraints, KexiDB::Field* fld); + void getOptions(int flags, KexiDB::Field* fld); /*! driver's static version information, it is automatically implemented in implementation using KEXIDB_DRIVER macro (see driver_p.h) */ virtual int versionMajor() const; virtual int versionMinor() const; }; } #endif diff --git a/kspread/kspread_cell.h b/kspread/kspread_cell.h index 79879517036..8b1308c719c 100644 --- a/kspread/kspread_cell.h +++ b/kspread/kspread_cell.h @@ -1,950 +1,950 @@ /* This file is part of the KDE project Copyright 2004 Tomas Mecir Copyright 1999-2002,2004 Laurent Montel Copyright 2002,2004 Ariya Hidayat Copyright 2002-2003 Norbert Andres Copyright 2003 Stefan Hetzl Copyright 2001-2002 Philipp Mueller Copyright 2002 Harri Porten Copyright 2002 John Dailey Copyright 1999-2001 David Faure Copyright 2000-2001 Werner Trobin Copyright 2000 Simon Hausmann Copyright 1999 Michael Reiher Copyright 1999 Reginald Stadlbauer 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef KSPREAD_CELL #define KSPREAD_CELL class KSpreadCell; class KSpreadSheet; class KSpreadCanvas; class KSpreadView; class KLocale; class QDomElement; class QDomDocument; class KoXmlWriter; class KoGenStyles; class KoGenStyle; class KSParseNode; class KSpreadGenValidationStyles; #include #include #include #include "kspread_format.h" #include "kspread_global.h" #include "kspread_condition.h" #include "kspread_value.h" #include #include struct KSpreadValidity { KSpreadValidity() { valMin = 0.0; valMax = 0.0; m_cond = None; m_action = Stop; m_allow = Allow_All; displayMessage = true; allowEmptyCell = false; displayValidationInformation = false; }; QString message; QString title; QString titleInfo; QString messageInfo; double valMin; double valMax; Conditional m_cond; Action m_action; Allow m_allow; QTime timeMin; QTime timeMax; QDate dateMin; QDate dateMax; bool displayMessage; bool allowEmptyCell; bool displayValidationInformation; QStringList listValidity; }; class CellPrivate; /** * For every cell in the spread sheet there is a KSpreadCell object. * * KSpreadCell contains format information and algorithm and it * contains the calculation algorithm. * * However, all empty cells are represented by one instace, called the * default cell. @ref #isDefault tells wether a cell is the default one * or not. */ class KSPREAD_EXPORT KSpreadCell : public KSpreadFormat { friend class SelectPrivate; friend class KSpreadConditions; public: KSpreadCell (KSpreadSheet *_sheet, int _column, int _row); KSpreadCell (KSpreadSheet *_sheet, KSpreadStyle * _style, int _column, int _row); /** * @see #sheetDies */ ~KSpreadCell(); /** * Returns the worksheet which owns this cell. */ KSpreadSheet* sheet() const; /** * Returns true if this is a default cell (with row and column equal to zero). * Normally, cell constructed within a sheet can't be a default cell. */ bool isDefault() const; /** * Returns true if this cell has no content, i.e no text and no formula. */ bool isEmpty() const; /** * Returns the cell's column. This could be 0 if the cell is the default cell. */ int column() const; /** * Returns the cell's row. This could be 0 if the cell is the default cell. */ int row() const; /** * Returns the name of the cell. For example, the cell in first column and * first row is "A1". */ QString name() const; /** * Returns the full name of the cell, i.e. including the worksheet name. * Example: "Sheet1!A1" */ QString fullName() const; /** * Returns the column name of the cell. */ QString columnName() const; /** * Given the cell position, this static function returns the name of the cell. * Example: name(5,4) will return "E4". */ static QString name( int col, int row ); /** * Given the sheet and cell position, this static function returns the full name * of the cell, i.e. with the name of the sheet. */ static QString fullName( const KSpreadSheet *s, int col, int row ); /** * Given the column number, this static function returns the corresponding * column name, i.e. the first column is "A", the second is "B", and so on. */ static QString columnName( uint column ); /** * Returns the locale setting of this cell. */ KLocale* locale(); /** * Returns true if this cell holds a formula. */ bool isFormula() const; /** * Return the text the user entered. This could be a value (e.g. "14.03") * or a formula (e.g. "=SUM(A1:A10)") */ QString text() const; QString strOutText() const; /** * Returns the value that this cell holds. It could be from the user * (i.e. when s/he enters a value) or a result of formula. */ const KSpreadValue value() const; /** * Sets the value for this cell. */ void setValue( const KSpreadValue& value ); KSpreadCell* previousCell() const; KSpreadCell* nextCell() const; void setPreviousCell( KSpreadCell* c ); void setNextCell( KSpreadCell* c ); /** * Moves around the cell. It cares about obscured and obscuring cells and * forces, relayout, calculation and redrawing of the cell. */ void move( int column, int row ); /** * The @ref KSpreadSheet calls this method if the sheet becomes deleted. * At the time this method is called other cells may already be deleted or * in some inconsistent state. * * The purpose of this method is to clear up some variables so that the destructor * runs without any crash. Especially all variables referencing other cells * must be voided. This method may not call any other method since the whole sheet * and all remaining cells are in an inconsistent state now. */ void sheetDies(); /** * Save this cell. * @param _x_offset ... * @param _y_offset ... * @param force if set to true, all the properties of the format are stored (used for "Copy") * @param era set this to true if you want to encode relative references as absolutely (they will be switched * back to relative references during decoding) - is used for cutting to clipboard * Usually this is false, to only store the properties explicitly set. */ QDomElement save( QDomDocument& doc, int _x_offset = 0, int _y_offset = 0, bool force = false, bool copy = false, bool era = false ); virtual bool saveOasis( KoXmlWriter& xmlwriter , KoGenStyles &mainStyles, int row, int column, int maxCol, int &repeated, KSpreadGenValidationStyles &valStyle ); void saveOasisValue (KoXmlWriter &xmlWriter); QString saveOasisCellStyle( KoGenStyle ¤tCellStyle,KoGenStyles &mainStyles, bool force = false, bool copy = false ); bool load( const QDomElement& cell, int _xshift, int _yshift, PasteMode pm = Normal, Operation op = OverWrite, bool paste = false ); bool loadOasis( const QDomElement & element, const KoOasisStyles &oasisStyles ); void loadOasisValidation( const QString& validationName ); QTime toTime(const QDomElement &element) ; QDate toDate(const QDomElement &element); /** * Copyies the format from the cell at the position (_column|_row). * * @see #copyAll */ void copyFormat( int _column, int _row ); /** * A convenience function. * * @see #copyAll */ void copyFormat( KSpreadCell *_cell ); void copyContent( KSpreadCell *_cell ); /** * Copies the format and the content. It does not copy the @ref #m_row and @ref #m_column attributes. * Besides that all persistent attributes are copied. @ref #setCellText is called to set the real * content. * * @see #copyFormat */ void copyAll( KSpreadCell *cell); /** * Paints the cell. * * @param rect the portion of the canvas that is actually in view * @param painter the painter object to paint on * @param the view of this data. This may be NULL, but no selection * will be included with the painting. * @param coordinates coordinates on the painter where the top left corner * of the cell should be painted plus width and height * @param cellRef the column/row coordinates of the cell. * @param paintBorderRight whether to draw the right border too. * @param paintBorderBottom whether to draw the bottom border too. * @param drawCursor whether to draw the cursor and selection or not */ void paintCell( const KoRect & rect, QPainter & painter, KSpreadView * view, const KoPoint & coordinate, const QPoint & cellRef, bool paintBorderRight, bool paintBorderBottom, bool paintBorderLeft, bool paintBorderTop, QPen & rightPen, QPen & bottomPen, QPen & leftPen, QPen & topPen, bool drawCursor = true ); /** * @param _col the column this cell is assumed to be in. * This parameter defaults to the return value of @ref #column. * * @return the width of this cell as int */ int width( int _col = -1, const KSpreadCanvas *_canvas = 0L ) const; /** * @param _row the row this cell is assumed to be in. * * @return the height of this cell as int */ int height( int _row = -1, const KSpreadCanvas *_canvas = 0L ) const; /** * @param _col the column this cell is assumed to be in. * This parameter defaults to the return value of @ref #column. * * @return the width of this cell as double */ double dblWidth( int _col = -1, const KSpreadCanvas *_canvas = 0L ) const; /** * @param _row the row this cell is assumed to be in. * * @return the height of this cell as double */ double dblHeight( int _row = -1, const KSpreadCanvas *_canvas = 0L ) const; /** * @return a QRect for this cell (i.e., a 1x1 rect) */ QRect cellRect(); /** * @return TRUE if the cell should be printed in a print out. * That si the case if it has any content, border, backgroundcolor, * or background brush. * * @see KSpreadSheet::print */ bool needsPrinting() const; /** * Increases the precison of the * value displayed. Precision means here the amount of * digits behind the dot. If the current precision is the * default of -1, then it is set to the number of digits * behind the dot plus 1. */ void incPrecision(); /** * Decreases the precison of the * value displayed. Precision means here the amount of * digits behind the dot. If the current precision is the * default of -1, then it is set to the number of digits * behind the dot minus 1. */ void decPrecision(); /** * The high-level method for setting text, when the user inputs it. * It will revert back to the old text if testValidity() returns action==stop. */ void setCellText( const QString& _text, bool asString = false ); /** * Sets the text in the cell when the user inputs it. * Will determine the type of contents automatically. * Called by setCellText. */ void setDisplayText( const QString& _text ); /** * Sets a link for this cell. For example, setLink( "mailto:joe@somewhere.com" ) * will open a new e-mail if this cell is clicked. * Possible choices for link are URL (web, ftp), e-mail address, local file, * or another cell. */ void setLink( const QString& link ); /** * Returns the link associated with cell. It is empty if this cell * contains no link. */ QString link() const; //////////////////////////////// // // Methods for querying format stuff. // //////////////////////////////// const QPen & effLeftBorderPen( int col, int row ) const; const QPen & effTopBorderPen( int col, int row ) const; const QPen & effRightBorderPen( int col, int row ) const; const QPen & effBottomBorderPen( int col, int row ) const; const QPen & effGoUpDiagonalPen( int col, int row ) const; const QPen & effFallDiagonalPen( int col, int row ) const; const QColor & effTextColor( int col, int row ) const; uint effBottomBorderValue( int col, int row ) const; uint effRightBorderValue( int col, int row ) const; uint effLeftBorderValue( int col, int row ) const; uint effTopBorderValue( int col, int row ) const; /** * @reimp */ const QPen& leftBorderPen( int col, int row ) const; /** * @reimp */ const QPen& topBorderPen( int col, int row ) const; /** * @reimp */ const QPen& rightBorderPen( int col, int row ) const; /** * @reimp */ const QPen& bottomBorderPen( int col, int row ) const; /** * @reimp */ const QColor& bgColor( int col, int row ) const; /** * @reimp */ const QBrush& backGroundBrush( int col, int row ) const; //////////////////////////////// // // Methods for setting format stuff. // //////////////////////////////// /** * @reimp */ void setLeftBorderPen( const QPen& p ); /** * @reimp */ void setTopBorderPen( const QPen& p ); /** * @reimp */ void setRightBorderPen( const QPen& p ); /** * @reimp */ void setBottomBorderPen( const QPen& p ); /** * @reimp */ virtual void setCurrency( int type, QString const & symbol ); ////////////////////// // // Other stuff // ////////////////////// /** * Return the format of this cell. * Convenience method for KSpreadFormat::getFormatType * Note that this is "how the user would like the data to be displayed if possible". * If he selects a date format, and the cell contains a string, we won't apply that format. */ FormatType formatType() const; bool isDate() const; bool isTime() const; void setNumber( double number ); /** return the cell's value as a double */ double getDouble (); void convertToDouble (); void convertToPercent (); void convertToMoney (); void convertToTime (); void convertToDate (); /** * return size of the text */ double textWidth() const; double textHeight() const; /** * Refreshing chart * bool refresh is default true * when it's false it's just for test * it's used when you paste cell */ bool updateChart(bool refresh=true); QString testAnchor( int _x, int _y ) const; /** * Called if the user clicks on a cell. If the cell is for example a button, then * @ref #m_strAction is executed. */ void clicked( KSpreadCanvas *_canvas ); /** * Starts calculating. * @param delay true if you want to check for delay condition in doc() * false if you really have to calculate the value right now * e.g. if you sort with formula as key * * @return TRUE on success and FALSE on error. */ bool calc(bool delay = true); /** * Set the calcDirtyFlag */ void setCalcDirtyFlag(); bool calcDirtyFlag(); /** * Notify this cell that another cell is depending, or no longer depending on this cell's value * * @param col the column of the cell * @param row the row of the cell * @param sheet the sheet that the cell is on * @param isDepending true if the cell is now depending on this one, false if it is not any longer * depending on it. */ void NotifyDepending( int col, int row, KSpreadSheet* sheet, bool isDepending ); /** * Causes the format to be recalculated when the cell is drawn next time. * This flag is for example set if the width of the column changes or if * some cell specific format value like font or text change. */ virtual void setLayoutDirtyFlag( bool format = false ); bool layoutDirtyFlag() const; void clearDisplayDirtyFlag(); void setDisplayDirtyFlag(); /** * Tells this cell that the @ref KSpreadCell 'cell' obscures this one. * If this cell has to be redrawn, then the obscuring cell is redrawn instead. * * @param cell the obscuring cell * @param isForcing whether this is a forced obscuring (merged cells) or * just a temporary obscure (text overlap). */ void obscure( KSpreadCell *cell, bool isForcing = false); /** * Tells this cell that it is no longer obscured. * * @param cell the cell that is no longer obscuring this one. */ void unobscure(KSpreadCell* cell); /** * @return TRUE if this cell is obscured by another. */ bool isObscured() const; /** * If obscuring is forced then the marker may never reside on this cell. * * @return TRUE if an obscuring cell is forced to obscure this one. */ bool isObscuringForced() const; /** * Return the cell that is obscuring this one (merged cells only). * If no obscuring, return the cell itself. * * @return the cell that decides the format for the cell in question. */ - KSpreadCell *KSpreadCell::ultimateObscuringCell() const; + KSpreadCell *ultimateObscuringCell() const; /** * @return the obscuring cell list (might be empty) */ QValueList obscuringCells() const; void clearObscuringCells(); /** * Force the cell to occupy other cells space. * If '_x' and '_y' are 0 then the forcing is disabled. * * @param _col is the column this cell is assumed to be in. * @param _row is the row this cell is assumed to be in. * @param _x tells to occupy _x additional cells in the horizontal * @param _y tells to occupy _y additional cells in the vertical * */ void forceExtraCells( int _col, int _row, int _x, int _y ); /** * @return TRUE if the cell is forced to obscure other cells. */ bool isForceExtraCells() const; /** * @return the number of obscured cells in the horizontal direction as a * result of cell merging (forced obscuring) */ int mergedXCells() const; /** * @return the number of obscured cells in the vertical direction as a * result of cell merging (forced obscuring) */ int mergedYCells() const; /** * @return the amount of obscured cells in the horizontal direction */ int extraXCells() const; /** * @return the amount of obscured cells in the vertical direction */ int extraYCells() const; double extraWidth() const; double extraHeight() const; /** * encode a formula into a text representation * * @param _era encode relative references absolutely (this is used for copying * a cell to make the paste operation create a formula that points * to the original cells, not the cells at the same relative position) */ QString encodeFormula( bool _era = false, int _col = -1, int _row = -1 ); QString decodeFormula( const QString &_text, int _col = -1, int _row = -1 ); /** * Merges the @p new_text with @p old_text during a paste operation. * If both texts represent doubles, then the operation is performed on both * values and the result is returned. If both texts represents a formula or * one a formula and the other a double value, then a formula is returned. * In all other cases @p new_text is returned. * * @return the merged text. */ QString pasteOperation( const QString &new_text, const QString &old_text, Operation op ); /** * @return TRUE if the cell contains a formula that could not * be evaluated. These cells usually appear with "####" on the screen. */ bool hasError() const; /** * Clear all error flags from the cell. */ void clearAllErrors(); /** * Calculates the layout of the cell, i,e, determines what should be shown * for this cell, m_strOutText. */ void makeLayout( QPainter &_painter, int _col, int _row ); /** * Parses the formula. * Fills @ref #dependList and @ref #formula. * @return FALSE on error. */ bool makeFormula(); void defaultStyle(); /** * Gets a copy of the list of current conditions */ QValueList conditionList() const; /** * Replace the old set of conditions with a new one */ void setConditionList(const QValueList &newList); KSpreadValidity * getValidity( int newStruct = -1 ); void removeValidity(); /** * return true if value is good * else show a messagebox */ bool testValidity() const; /** * Calculates the text parameters stored in cell * Applies font to use to @param painter */ void calculateTextParameters( QPainter &painter, int _col, int _row ); /** * return align X when align is undefined */ int defineAlignX(); /** * Used for comparing cells (when sorting) */ bool operator > ( const KSpreadCell & ) const; bool operator < ( const KSpreadCell & ) const; void freeAllObscuredCells(); /* descriptions of the flags are just below */ enum CellFlags{ /* this uses the same flags variable as KSpreadFormat. The least significant 16 bits are reserved for the base class, and the most significant 16 have been left for this subclass to use. */ Flag_LayoutDirty = 0x00010000, Flag_CalcDirty = 0x00020000, Flag_Progress = 0x00040000, Flag_UpdatingDeps = 0x00080000, Flag_DisplayDirty = 0x00100000, Flag_ForceExtra = 0x00200000, Flag_CellTooShortX = 0x00400000, Flag_CellTooShortY = 0x00800000, Flag_ParseError = 0x01000000, Flag_CircularCalculation = 0x02000000, Flag_DependancyError = 0x04000000, Flag_PaintingCell = 0x08000000, // On during painting Flag_TextFormatDirty = 0x10000000 }; void clearFlag( CellFlags flag ); void setFlag( CellFlags flag ); bool testFlag( CellFlags flag ) const; /* descriptions of the flags are as follows: */ /* * Error * True if the cell is calculated and there was an error during calculation * In that case the cell usually displays "#####" * * LayoutDirty * Flag showing whether the current layout is OK. * If you change for example the fonts point size, set this flag. When the * cell must draw itself on the screen it will first recalculate its layout. * * CalcDirty * Shows whether recalculation is necessary. * If this cell must be recalculated for some reason, for example the user * entered a new formula, then this flag is set. If @ref #bFormula is FALSE * nothing will happen at all. * * Progress * Tells whether this cell it currently under calculation. * If a cell thats 'progressFlag' is set is told to calculate we * have detected a circular reference and we must stop calulating. * * UpdatingDeps * Tells whether we've already calculated the reverse dependancies for this * cell. Similar to the Progress flag but it's for when we are calculating * in the reverse direction. * @see updateDependancies() * * DisplayDirty - TODO - is this unused now?? * If this flag is set, then it is known that this cell has to be updated * on the display. This means that somewhere in the calling stack there is a * function which will call @ref KSpreadSheet::updateCell once it retains * the control. If a function changes the contents/layout of this cell and this * flag is not set, then the function must set it at once. After the changes * are done the function must call m_pSheet->updateCell(...). * The flag is cleared by the function m_pSheet->updateCell. * * ForceExtra * Tells whether the cell is forced to exceed its size. * Cells may occupy other cells space on demand. But you may force * a cell to do so by setting this flag. Forcing the cell to have * no extra size will disable this flag! * * CellTooShortX * When it's True displays ** and/or the red triangle and when the * mouse is over it, the tooltip displays the full value * it's true when text size is bigger that cell size * and when Align is center or left * * CellTooShortY * When it's True when mouseover it, the tooltip displays the full value * it's true when text size is bigger that cell height */ protected: /** * @reimp */ void formatChanged(); /** * @reimp */ KSpreadFormat* fallbackFormat( int col, int row ); /** * @reimp */ const KSpreadFormat* fallbackFormat( int col, int row ) const; /** * Applies the font to use to @param painter */ void applyZoomedFont( QPainter &painter, int _col, int _row ); /** * Called from @ref #makeFormat to determine the space * needed for the text. */ void textSize( QPainter &_paint ); /** * Called from @ref #paintCell to determine the text * wich can be displaying. */ QString textDisplaying( QPainter &painter); /** * Cleans up formula stuff. * Call this before you store a new formula or to delete the * formula. */ void clearFormula(); /** * Check the input from the user, and determine the contents of the cell accordingly * (in particular the data type). * This is to be called only when m_content == Text. * * Input: m_strText * Output: m_dataType */ void checkTextInput(); /** * Automatically chooses between a number format and * a scientific format (if the number is too big) */ void checkNumberFormat(); void loadOasisValidationCondition( QString &valExpression ); void saveOasisAnnotation( KoXmlWriter &xmlwriter ); void loadOasisConditional( QDomElement * style ); private: CellPrivate* d; // static const char* s_dataTypeToString[]; /* helper functions to the paintCell(...) function */ void paintCellBorders( QPainter& painter, const KoRect &rect, const KoRect &cellRect, const QPoint &cellRef, bool paintBorderRight, bool paintBorderBottom, bool paintBorderLeft, bool paintBorderTop, QPen & rightPen, QPen & bottomPen, QPen & leftPen, QPen & topPen ); void paintPageBorders( QPainter& painter, const KoRect &cellRect, const QPoint &cellRef, bool paintBorderRight, bool paintBorderBottom ); void paintText( QPainter& painter, const KoRect &cellRect, const QPoint &cellRef ); void paintMoreTextIndicator( QPainter& painter, const KoRect &cellRect, QColor &backgroundColor ); void paintCommentIndicator( QPainter& painter, const KoRect &cellRect, const QPoint &cellRef, QColor &backgroundColor ); void paintFormulaIndicator( QPainter& painter, const KoRect &cellRect, QColor &backgroundColor ); void paintDefaultBorders( QPainter& painter, const KoRect &rect, const KoRect &cellRect, const QPoint &cellRef, bool paintBorderRight, bool paintBorderBottom, bool paintBorderLeft, bool paintBorderTop, QPen const & rightPen, QPen const & bottomPen, QPen const & leftPen, QPen const & topPen ); void paintBackground( QPainter& painter, const KoRect &cellRect, const QPoint &cellRef, bool selected, QColor &backgroundColor ); void paintObscuredCells( const KoRect& rect, QPainter& painter, KSpreadView* view, const KoRect &cellRect, const QPoint &cellRef, bool paintBorderRight, bool paintBorderBottom, bool paintBorderLeft, bool paintBorderTop, QPen & rightPen, QPen & bottomPen, QPen & leftPen, QPen & topPen ); void paintCellDiagonalLines( QPainter& painter, const KoRect &cellRect, const QPoint &cellRef ); /** handle the fact that a cell has been updated - calls cellUpdated() in the parent Sheet object */ void valueChanged (); /* helper functions to the makeLayout(...) function */ /* (more to come) */ void setOutputText(); /* helper functions to the load/save routines */ bool loadCellData(const QDomElement &text, Operation op); bool saveCellResult( QDomDocument& doc, QDomElement& result, QString str ); void update(); int effAlignX(); /** * When you insert a cell at bottom or right * and the size is not the same so text offset * will not good => recalc offset */ void offsetAlign( int _col, int _row ); void checkForNamedAreas( QString & formula ) const; void convertFormula( QString & text, const QString & f ) const; QString convertFormulaToOasisFormat( const QString & formula ) const; void loadOasisValidationValue( const QStringList &listVal ); }; #endif // KSPREAD_CELL