GUI: AStyle
This commit is contained in:
parent
8bd1effa21
commit
d478952af2
|
@ -115,7 +115,7 @@ void AbstractTableView::slot_updateShortcuts()
|
||||||
updateShortcuts();
|
updateShortcuts();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractTableView::loadColumnFromConfig(const QString& viewName)
|
void AbstractTableView::loadColumnFromConfig(const QString & viewName)
|
||||||
{
|
{
|
||||||
int columnCount = getColumnCount();
|
int columnCount = getColumnCount();
|
||||||
for(int i = 0; i < columnCount; i++)
|
for(int i = 0; i < columnCount; i++)
|
||||||
|
@ -147,7 +147,7 @@ void AbstractTableView::saveColumnToConfig()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractTableView::setupColumnConfigDefaultValue(QMap<QString, duint>& map, const QString& viewName, int columnCount)
|
void AbstractTableView::setupColumnConfigDefaultValue(QMap<QString, duint> & map, const QString & viewName, int columnCount)
|
||||||
{
|
{
|
||||||
for(int i = 0; i < columnCount; i++)
|
for(int i = 0; i < columnCount; i++)
|
||||||
{
|
{
|
||||||
|
|
|
@ -109,9 +109,9 @@ public:
|
||||||
void setColumnHidden(int col, bool hidden);
|
void setColumnHidden(int col, bool hidden);
|
||||||
|
|
||||||
// UI customization
|
// UI customization
|
||||||
void loadColumnFromConfig(const QString& viewName);
|
void loadColumnFromConfig(const QString & viewName);
|
||||||
void saveColumnToConfig();
|
void saveColumnToConfig();
|
||||||
static void setupColumnConfigDefaultValue(QMap<QString, duint>& map, const QString& viewName, int columnCount);
|
static void setupColumnConfigDefaultValue(QMap<QString, duint> & map, const QString & viewName, int columnCount);
|
||||||
|
|
||||||
// Content drawing control
|
// Content drawing control
|
||||||
bool getDrawDebugOnly();
|
bool getDrawDebugOnly();
|
||||||
|
|
|
@ -8,7 +8,7 @@ void SetApplicationIcon(WId winId)
|
||||||
DestroyIcon(hIcon);
|
DestroyIcon(hIcon);
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray& ByteReverse(QByteArray& array)
|
QByteArray & ByteReverse(QByteArray & array)
|
||||||
{
|
{
|
||||||
int length = array.length();
|
int length = array.length();
|
||||||
for(int i = 0; i < length / 2; i++)
|
for(int i = 0; i < length / 2; i++)
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
void SetApplicationIcon(WId winId);
|
void SetApplicationIcon(WId winId);
|
||||||
QByteArray& ByteReverse(QByteArray& array);
|
QByteArray & ByteReverse(QByteArray & array);
|
||||||
|
|
||||||
#endif // MISCUTIL_H
|
#endif // MISCUTIL_H
|
||||||
|
|
Loading…
Reference in New Issue