1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/* This file is part of the KDE project
Copyright 2008 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
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 KSPREADAPPLICATIONSETTINGS
#define KSPREADAPPLICATIONSETTINGS
#include <KCompletion>
#include <QColor>
#include <QObject>
#include "Global.h"
#include "sheets_odf_export.h"
namespace Calligra
{
namespace Sheets
{
/**
* Visual settings.
*/
class CALLIGRA_SHEETS_ODF_EXPORT ApplicationSettings : public QObject
{
Q_OBJECT
Q_PROPERTY(bool showVerticalScrollBar READ showVerticalScrollBar WRITE setShowVerticalScrollBar)
Q_PROPERTY(bool showHorizontalScrollBar READ showHorizontalScrollBar WRITE setShowHorizontalScrollBar)
Q_PROPERTY(bool showColumnHeader READ showColumnHeader WRITE setShowColumnHeader)
Q_PROPERTY(bool showRowHeader READ showRowHeader WRITE setShowRowHeader)
Q_PROPERTY(bool showStatusBar READ showStatusBar WRITE setShowStatusBar)
Q_PROPERTY(bool showTabBar READ showTabBar WRITE setShowTabBar)
public:
/**
* Constructor.
*/
ApplicationSettings();
/**
* Destructor.
*/
~ApplicationSettings() override;
void load();
void save() const;
/**
* If \c enable is true, vertical scrollbar is visible, otherwise
* it will be hidden.
*/
void setShowVerticalScrollBar(bool enable);
/**
* Returns true if vertical scroll bar is visible.
*/
bool showVerticalScrollBar() const;
/**
* If \c enable is true, horizontal scrollbar is visible, otherwise
* it will be hidden.
*/
void setShowHorizontalScrollBar(bool enable);
/**
* Returns true if horizontal scroll bar is visible.
*/
bool showHorizontalScrollBar() const;
/**
* If \c enable is true, column header is visible, otherwise
* it will be hidden.
*/
void setShowColumnHeader(bool enable);
/**
* Returns true if column header is visible.
*/
bool showColumnHeader() const;
/**
* If \c enable is true, row header is visible, otherwise
* it will be hidden.
*/
void setShowRowHeader(bool enable);
/**
* Returns true if row header is visible.
*/
bool showRowHeader() const;
/**
* Sets the color of the grid.
*/
void setGridColor(const QColor& color);
/**
* Returns the color of the grid.
*/
QColor gridColor() const;
/**
* Sets the indentation value.
*/
void setIndentValue(double val);
/**
* Returns the indentation value.
*/
double indentValue() const;
/**
* If \c enable is true, status bar is visible, otherwise
* it will be hidden.
*/
void setShowStatusBar(bool enable);
/**
* Returns true if status bar is visible.
*/
bool showStatusBar() const;
/**
* If \c enable is true, tab bar is visible, otherwise
* it will be hidden.
*/
void setShowTabBar(bool enable);
/**
* Returns true if tab bar is visible.
*/
bool showTabBar() const;
/**
* @return completion mode
*/
KCompletion::CompletionMode completionMode() const;
/**
* Sets the completion mode.
* @param mode the mode to be set
*/
void setCompletionMode(KCompletion::CompletionMode mode);
Calligra::Sheets::MoveTo moveToValue() const;
void setMoveToValue(Calligra::Sheets::MoveTo moveTo);
/**
* Method of calc
*/
void setTypeOfCalc(MethodOfCalc calc);
MethodOfCalc getTypeOfCalc() const;
QColor pageOutlineColor() const;
void changePageOutlineColor(const QColor& color);
private:
class Private;
Private * const d;
};
} // namespace Sheets
} // namespace Calligra
#endif // KSPREADAPPLICATIONSETTINGS
|