diff --git a/.gitignore b/.gitignore index f147edf..fab7372 100644 --- a/.gitignore +++ b/.gitignore @@ -1,52 +1,73 @@ -# C++ objects and libs -*.slo -*.lo -*.o +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave *.a -*.la -*.lai +*.core +*.moc +*.o +*.obj +*.orig +*.rej *.so *.so.* -*.dll -*.dylib - -# Qt-es -object_script.*.Release -object_script.*.Debug -*_plugin_import.cpp +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc /.qmake.cache /.qmake.stash -*.pro.user -*.pro.user.* -*.qbs.user -*.qbs.user.* -*.moc -moc_*.cpp -moc_*.h -qrc_*.cpp -ui_*.h -*.qmlc -*.jsc -Makefile* -*build-* -*.qm -*.prl -# Qt unit tests -target_wrapper.* +# qtcreator generated files +*.pro.user* -# QtCreator -*.autosave +# xemacs temporary files +*.flc -# QtCreator Qml -*.qmlproject.user -*.qmlproject.user.* +# Vim temporary files +.*.swp -# QtCreator CMake -CMakeLists.txt.user* +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* -# QtCreator 4.8< compilation database -compile_commands.json +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe -# QtCreator local machine specific files for imported projects -*creator.user* diff --git a/cmainwindow.cpp b/cmainwindow.cpp new file mode 100644 index 0000000..df04428 --- /dev/null +++ b/cmainwindow.cpp @@ -0,0 +1,176 @@ +#include "common.h" + +#include "cmainwindow.h" +#include "ui_cmainwindow.h" + +#include + +#include +#include + +#include +#include + + +cMainWindow::cMainWindow(cSplashScreen* lpSplashScreen, QWidget *parent) + : QMainWindow(parent), + ui(new Ui::cMainWindow), + m_lpSplashScreen(lpSplashScreen) +{ + initUI(); + createActions(); + + setImageFormats(); +} + +cMainWindow::~cMainWindow() +{ + delete ui; +} + +void cMainWindow::closeEvent(QCloseEvent *event) +{ +// if(m_working) +// { +// QMessageBox::information(this, tr("Close"), tr("Can't close, pictureConvert is working.")); +// event->ignore(); +// return; +// } + + QSettings settings; + settings.setValue("main/width", QVariant::fromValue(size().width())); + settings.setValue("main/height", QVariant::fromValue(size().height())); + settings.setValue("main/x", QVariant::fromValue(x())); + settings.setValue("main/y", QVariant::fromValue(y())); + if(this->isMaximized()) + settings.setValue("main/maximized", QVariant::fromValue(true)); + else + settings.setValue("main/maximized", QVariant::fromValue(false)); + +// settings.setValue("main/thumbnailSize", QVariant::fromValue(ui->m_lpThumbnailSize->value())); + + event->accept(); +} + +void cMainWindow::initUI() +{ + QSettings settings; + + ui->setupUi(this); + +// QIcon::setThemeName("TangoMFK"); + +// m_lpFileListModel = new QStandardItemModel; +// ui->m_lpFileList->setModel(m_lpFileListModel); + + if(!settings.value("main/maximized").toBool()) + { + qint32 iX = settings.value("main/x", QVariant::fromValue(-1)).toInt(); + qint32 iY = settings.value("main/y", QVariant::fromValue(-1)).toInt(); + qint32 iWidth = settings.value("main/width", QVariant::fromValue(-1)).toInt(); + qint32 iHeight = settings.value("main/height", QVariant::fromValue(-1)).toInt(); + + if(iWidth != -1 && iHeight != -1) + resize(iWidth, iHeight); + if(iX != -1 && iY != -1) + move(iX, iY); + } + +// m_lpProgressBar = new QProgressBar(this); +// m_lpProgressBar->setVisible(false); +// ui->m_lpStatusBar->addPermanentWidget(m_lpProgressBar); + +// QStringList headerLabels = QStringList() << tr("icon") << tr("path") << tr("file") << tr("size") << tr("date") << tr("width") << tr("height") << (""); +// m_lpFileListModel->setHorizontalHeaderLabels(headerLabels); +} + +void cMainWindow::createActions() +{ +// setToolButtonStyle(Qt::ToolButtonFollowStyle); + +// createFileActions(); +// createContextActions(); + +// connect(ui->m_lpFileList, &cTreeView::deleteEntrys, this, &cMainWindow::onDeleteEntrys); +// connect(ui->m_lpThumbnailSize, &QSlider::valueChanged, this, &cMainWindow::onThumbnailSize); +} + +void cMainWindow::createContextActions() +{ +} + +void cMainWindow::createFileActions() +{ +// m_lpFileToolBar = addToolBar("file"); + +// const QIcon openIcon = QIcon::fromTheme("document-open"); +// m_lpOpenFileAction = m_lpFileToolBar->addAction(openIcon, tr("&Open..."), this, &cMainWindow::onAddFile); +// m_lpOpenFileAction->setShortcut(QKeySequence::Open); + +// const QIcon openDirectoryIcon = QIcon::fromTheme("folder"); +// m_lpOpenDirectoryAction = m_lpFileToolBar->addAction(openIcon, tr("&Open Folder..."), this, &cMainWindow::onAddFolder); + + +// m_lpListToolBar = addToolBar("list"); + +// const QIcon deleteIcon = QIcon::fromTheme("edit-delete"); +// m_lpDeleteAction = m_lpListToolBar->addAction(deleteIcon, tr("&Delete"), this, &cMainWindow::onDeleteEntrys); +// m_lpDeleteAction->setShortcut(QKeySequence::Delete); + +// const QIcon clearIcon = QIcon::fromTheme("edit-clear"); +// m_lpClearAction = m_lpListToolBar->addAction(clearIcon, tr("&Clear"), this, &cMainWindow::onClearList); + + +// m_lpActionToolBar = addToolBar("action"); + +// const QIcon convertIcon = QIcon::fromTheme("system-run"); +// m_lpConvertAction = m_lpActionToolBar->addAction(convertIcon, tr("&Convert"), this, &cMainWindow::onConvert); +// m_lpConvertAction->setShortcut(QKeySequence::Delete); + +// const QIcon stopIcon = QIcon::fromTheme("process-stop"); +// m_lpStopAction = m_lpActionToolBar->addAction(stopIcon, tr("&Stop"), this, &cMainWindow::onStop); +} + +void cMainWindow::setImageFormats() +{ + QList readList = QImageReader::supportedImageFormats(); + QList writeList = QImageWriter::supportedImageFormats(); + + QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE"); + db.setHostName("localhost"); + db.setDatabaseName("picturePrint.db"); + + if(!db.open()) + return; + + QSqlQuery query; + + query.prepare("SELECT shortname, description, extension FROM imageFormat;"); + if(!query.exec()) + { + db.close(); + return; + } + + while(query.next()) + addImageFormat(query.value("shortname").toString(), query.value("description").toString(), query.value("extension").toString(), readList, writeList); + + db.close(); +} + +void cMainWindow::addImageFormat(const QString& shortName, const QString& description, const QString& extension, QList& readList, QList& writeList) +{ + bool r = readList.contains(QByteArray(shortName.toUtf8())); + bool w = writeList.contains(QByteArray(shortName.toUtf8())); + + if(QString(shortName).isEmpty()) + r = true; + + IMAGEFORMAT i; + i.shortName = shortName; + i.description = description; + i.extension = extension; + i.read = r; + i.write = w; + m_imageFormats.append(i); +} diff --git a/cmainwindow.h b/cmainwindow.h new file mode 100644 index 0000000..7497cb4 --- /dev/null +++ b/cmainwindow.h @@ -0,0 +1,42 @@ +#ifndef CMAINWINDOW_H +#define CMAINWINDOW_H + + +#include "csplashscreen.h" +#include "common.h" + +#include +#include + + +QT_BEGIN_NAMESPACE +namespace Ui { class cMainWindow; } +QT_END_NAMESPACE + + +class cMainWindow : public QMainWindow +{ + Q_OBJECT + +public: + cMainWindow(cSplashScreen* lpSplashScreen, QWidget *parent = nullptr); + ~cMainWindow(); + +private: + Ui::cMainWindow* ui; + cSplashScreen* m_lpSplashScreen; + + QList m_imageFormats; + + void initUI(); + void createActions(); + void createFileActions(); + void createContextActions(); + + void setImageFormats(); + void addImageFormat(const QString& shortName, const QString& description, const QString& extension, QList& readList, QList& writeList); + +protected: + void closeEvent(QCloseEvent* event); +}; +#endif // CMAINWINDOW_H diff --git a/cmainwindow.ui b/cmainwindow.ui new file mode 100644 index 0000000..3f6225c --- /dev/null +++ b/cmainwindow.ui @@ -0,0 +1,31 @@ + + + cMainWindow + + + + 0 + 0 + 800 + 600 + + + + + + + + + + 0 + 0 + 800 + 22 + + + + + + + + diff --git a/common.cpp b/common.cpp new file mode 100644 index 0000000..67c02a2 --- /dev/null +++ b/common.cpp @@ -0,0 +1 @@ +#include "common.h" diff --git a/common.h b/common.h new file mode 100644 index 0000000..a5acfbe --- /dev/null +++ b/common.h @@ -0,0 +1,31 @@ +#ifndef COMMON_H +#define COMMON_H + + +#include + + +#ifdef __GNUC__ + #define myDebug qDebug() << __FILE__ << "(" << __LINE__ << ") - " << __PRETTY_FUNCTION__ << ":" +#elif __MINGW32__ + #define myDebug qDebug() << __FILE__ << "(" << __LINE__ << ") - " << __PRETTY_FUNCTION__ << ":" +#else + #define myDebug qDebug() << __FILE__ << "(" << __LINE__ << ") - " << __FUNCTION__ << ":" +#endif + + +typedef struct tagIMAGEFORMAT +{ + QString shortName; + QString description; + QString extension; + bool read; + bool write; +/*! + \brief + + \typedef IMAGEFORMAT*/ +} IMAGEFORMAT; + + +#endif // COMMON_H diff --git a/csplashscreen.cpp b/csplashscreen.cpp new file mode 100644 index 0000000..6f0a358 --- /dev/null +++ b/csplashscreen.cpp @@ -0,0 +1,68 @@ +/*! + \file csplashscreen.cpp + +*/ + +#include "csplashscreen.h" +#include "common.h" + +#include + + +cSplashScreen::cSplashScreen(const QPixmap& pixmap, QFont& font) : + QSplashScreen(pixmap), + m_iMax(100), + m_iProgress(0) +{ + setFont(font); + m_textDocument.setDefaultFont(font); +} + +void cSplashScreen::setMax(qint32 max) +{ + m_iMax = max; +} + +void cSplashScreen::drawContents(QPainter *painter) +{ + painter->translate(m_rect.topLeft()); + m_textDocument.setHtml(m_szMessage); + m_textDocument.drawContents(painter); + + QStyleOptionProgressBar pbstyle; + pbstyle.initFrom(this); + pbstyle.state = QStyle::State_Enabled; + pbstyle.textVisible = false; + pbstyle.minimum = 0; + pbstyle.maximum = m_iMax; + pbstyle.progress = m_iProgress; + pbstyle.invertedAppearance = false; + pbstyle.rect = QRect(0, 330, 390, 10); // Where is it. + + // Draw it... + style()->drawControl(QStyle::CE_ProgressBar, &pbstyle, painter, this); +} + +void cSplashScreen::showStatusMessage(const QString& message) +{ + m_szMessage = message; + showMessage(m_szMessage); +} + +void cSplashScreen::addStatusMessage(const QString& message) +{ + m_szMessage.append(message); + showMessage(m_szMessage); +} + +void cSplashScreen::setMessageRect(QRect rect) +{ + m_rect = rect; + m_textDocument.setTextWidth(rect.width()); +} + +void cSplashScreen::setProgress(int value) +{ + m_iProgress = value; + update(); +} diff --git a/csplashscreen.h b/csplashscreen.h new file mode 100644 index 0000000..0ebe29b --- /dev/null +++ b/csplashscreen.h @@ -0,0 +1,78 @@ +/*! + \file csplashscreen.h + +*/ + +#ifndef CSPLASHSCREEN_H +#define CSPLASHSCREEN_H + + +#include +#include +#include + + +/*! + \brief + + \class cSplashScreen csplashscreen.h "csplashscreen.h" +*/ +class cSplashScreen : public QSplashScreen +{ +public: + cSplashScreen(const QPixmap& pixmap, QFont &font); + + /*! + \brief + + \fn drawContents + \param painter + */ + virtual void drawContents(QPainter *painter); + /*! + \brief + + \fn showStatusMessage + \param message + */ + void showStatusMessage(const QString &message); + /*! + \brief + + \fn addStatusMessage + \param message + */ + void addStatusMessage(const QString &message); + /*! + \brief + + \fn setMessageRect + \param rect + */ + void setMessageRect(QRect rect); + + /*! + \brief + + \fn setMax + \param max + */ + void setMax(qint32 max); + +private: + QTextDocument m_textDocument; /*!< TODO: describe */ + QString m_szMessage; /*!< TODO: describe */ + QRect m_rect; /*!< TODO: describe */ + qint32 m_iMax; /*!< TODO: describe */ + qint32 m_iProgress; /*!< TODO: describe */ +public slots: + /*! + \brief + + \fn setProgress + \param value + */ + void setProgress(int value); +}; + +#endif // CSPLASHSCREEN_H diff --git a/images/splash.png b/images/splash.png new file mode 100644 index 0000000..5329d63 Binary files /dev/null and b/images/splash.png differ diff --git a/images/tango/16x16/actions/address-book-new.png b/images/tango/16x16/actions/address-book-new.png new file mode 100644 index 0000000..2098cfd Binary files /dev/null and b/images/tango/16x16/actions/address-book-new.png differ diff --git a/images/tango/16x16/actions/appointment-new.png b/images/tango/16x16/actions/appointment-new.png new file mode 100644 index 0000000..18b7c67 Binary files /dev/null and b/images/tango/16x16/actions/appointment-new.png differ diff --git a/images/tango/16x16/actions/bookmark-new.png b/images/tango/16x16/actions/bookmark-new.png new file mode 100644 index 0000000..6cf6443 Binary files /dev/null and b/images/tango/16x16/actions/bookmark-new.png differ diff --git a/images/tango/16x16/actions/contact-new.png b/images/tango/16x16/actions/contact-new.png new file mode 100644 index 0000000..46573ff Binary files /dev/null and b/images/tango/16x16/actions/contact-new.png differ diff --git a/images/tango/16x16/actions/document-new.png b/images/tango/16x16/actions/document-new.png new file mode 100644 index 0000000..4c3efdd Binary files /dev/null and b/images/tango/16x16/actions/document-new.png differ diff --git a/images/tango/16x16/actions/document-open.png b/images/tango/16x16/actions/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/images/tango/16x16/actions/document-open.png differ diff --git a/images/tango/16x16/actions/document-pdf.png b/images/tango/16x16/actions/document-pdf.png new file mode 100644 index 0000000..4e1657f Binary files /dev/null and b/images/tango/16x16/actions/document-pdf.png differ diff --git a/images/tango/16x16/actions/document-print-preview.png b/images/tango/16x16/actions/document-print-preview.png new file mode 100644 index 0000000..ab92a30 Binary files /dev/null and b/images/tango/16x16/actions/document-print-preview.png differ diff --git a/images/tango/16x16/actions/document-print.png b/images/tango/16x16/actions/document-print.png new file mode 100644 index 0000000..35c37bd Binary files /dev/null and b/images/tango/16x16/actions/document-print.png differ diff --git a/images/tango/16x16/actions/document-properties.png b/images/tango/16x16/actions/document-properties.png new file mode 100644 index 0000000..ab0e8ea Binary files /dev/null and b/images/tango/16x16/actions/document-properties.png differ diff --git a/images/tango/16x16/actions/document-revert.png b/images/tango/16x16/actions/document-revert.png new file mode 100644 index 0000000..cf3c13b Binary files /dev/null and b/images/tango/16x16/actions/document-revert.png differ diff --git a/images/tango/16x16/actions/document-save-as.png b/images/tango/16x16/actions/document-save-as.png new file mode 100644 index 0000000..9bed143 Binary files /dev/null and b/images/tango/16x16/actions/document-save-as.png differ diff --git a/images/tango/16x16/actions/document-save.png b/images/tango/16x16/actions/document-save.png new file mode 100644 index 0000000..22ff495 Binary files /dev/null and b/images/tango/16x16/actions/document-save.png differ diff --git a/images/tango/16x16/actions/edit-clear.png b/images/tango/16x16/actions/edit-clear.png new file mode 100644 index 0000000..e6c8e8b Binary files /dev/null and b/images/tango/16x16/actions/edit-clear.png differ diff --git a/images/tango/16x16/actions/edit-copy.png b/images/tango/16x16/actions/edit-copy.png new file mode 100644 index 0000000..8dd48c4 Binary files /dev/null and b/images/tango/16x16/actions/edit-copy.png differ diff --git a/images/tango/16x16/actions/edit-cut.png b/images/tango/16x16/actions/edit-cut.png new file mode 100644 index 0000000..dc9eb9a Binary files /dev/null and b/images/tango/16x16/actions/edit-cut.png differ diff --git a/images/tango/16x16/actions/edit-delete.png b/images/tango/16x16/actions/edit-delete.png new file mode 100644 index 0000000..ea03150 Binary files /dev/null and b/images/tango/16x16/actions/edit-delete.png differ diff --git a/images/tango/16x16/actions/edit-find-replace.png b/images/tango/16x16/actions/edit-find-replace.png new file mode 100644 index 0000000..6edbef6 Binary files /dev/null and b/images/tango/16x16/actions/edit-find-replace.png differ diff --git a/images/tango/16x16/actions/edit-find.png b/images/tango/16x16/actions/edit-find.png new file mode 100644 index 0000000..d072d3c Binary files /dev/null and b/images/tango/16x16/actions/edit-find.png differ diff --git a/images/tango/16x16/actions/edit-paste.png b/images/tango/16x16/actions/edit-paste.png new file mode 100644 index 0000000..24588a3 Binary files /dev/null and b/images/tango/16x16/actions/edit-paste.png differ diff --git a/images/tango/16x16/actions/edit-redo.png b/images/tango/16x16/actions/edit-redo.png new file mode 100644 index 0000000..c3b0df0 Binary files /dev/null and b/images/tango/16x16/actions/edit-redo.png differ diff --git a/images/tango/16x16/actions/edit-select-all.png b/images/tango/16x16/actions/edit-select-all.png new file mode 100644 index 0000000..f4b0b19 Binary files /dev/null and b/images/tango/16x16/actions/edit-select-all.png differ diff --git a/images/tango/16x16/actions/edit-undo.png b/images/tango/16x16/actions/edit-undo.png new file mode 100644 index 0000000..8b0fef9 Binary files /dev/null and b/images/tango/16x16/actions/edit-undo.png differ diff --git a/images/tango/16x16/actions/folder-new.png b/images/tango/16x16/actions/folder-new.png new file mode 100644 index 0000000..628f4d5 Binary files /dev/null and b/images/tango/16x16/actions/folder-new.png differ diff --git a/images/tango/16x16/actions/format-indent-less.png b/images/tango/16x16/actions/format-indent-less.png new file mode 100644 index 0000000..1787a7f Binary files /dev/null and b/images/tango/16x16/actions/format-indent-less.png differ diff --git a/images/tango/16x16/actions/format-indent-more.png b/images/tango/16x16/actions/format-indent-more.png new file mode 100644 index 0000000..6bad6bb Binary files /dev/null and b/images/tango/16x16/actions/format-indent-more.png differ diff --git a/images/tango/16x16/actions/format-justify-center.png b/images/tango/16x16/actions/format-justify-center.png new file mode 100644 index 0000000..207dc4c Binary files /dev/null and b/images/tango/16x16/actions/format-justify-center.png differ diff --git a/images/tango/16x16/actions/format-justify-fill.png b/images/tango/16x16/actions/format-justify-fill.png new file mode 100644 index 0000000..663cbad Binary files /dev/null and b/images/tango/16x16/actions/format-justify-fill.png differ diff --git a/images/tango/16x16/actions/format-justify-left.png b/images/tango/16x16/actions/format-justify-left.png new file mode 100644 index 0000000..d9b40a7 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-left.png differ diff --git a/images/tango/16x16/actions/format-justify-right.png b/images/tango/16x16/actions/format-justify-right.png new file mode 100644 index 0000000..c301307 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-right.png differ diff --git a/images/tango/16x16/actions/format-text-bold.png b/images/tango/16x16/actions/format-text-bold.png new file mode 100644 index 0000000..c9cb630 Binary files /dev/null and b/images/tango/16x16/actions/format-text-bold.png differ diff --git a/images/tango/16x16/actions/format-text-italic.png b/images/tango/16x16/actions/format-text-italic.png new file mode 100644 index 0000000..977ea82 Binary files /dev/null and b/images/tango/16x16/actions/format-text-italic.png differ diff --git a/images/tango/16x16/actions/format-text-strikethrough.png b/images/tango/16x16/actions/format-text-strikethrough.png new file mode 100644 index 0000000..ccee76e Binary files /dev/null and b/images/tango/16x16/actions/format-text-strikethrough.png differ diff --git a/images/tango/16x16/actions/format-text-underline.png b/images/tango/16x16/actions/format-text-underline.png new file mode 100644 index 0000000..0c48721 Binary files /dev/null and b/images/tango/16x16/actions/format-text-underline.png differ diff --git a/images/tango/16x16/actions/go-bottom.png b/images/tango/16x16/actions/go-bottom.png new file mode 100644 index 0000000..2c5a803 Binary files /dev/null and b/images/tango/16x16/actions/go-bottom.png differ diff --git a/images/tango/16x16/actions/go-down.png b/images/tango/16x16/actions/go-down.png new file mode 100644 index 0000000..3dd7fcc Binary files /dev/null and b/images/tango/16x16/actions/go-down.png differ diff --git a/images/tango/16x16/actions/go-first.png b/images/tango/16x16/actions/go-first.png new file mode 100644 index 0000000..9c15c09 Binary files /dev/null and b/images/tango/16x16/actions/go-first.png differ diff --git a/images/tango/16x16/actions/go-home.png b/images/tango/16x16/actions/go-home.png new file mode 100644 index 0000000..a46fb22 Binary files /dev/null and b/images/tango/16x16/actions/go-home.png differ diff --git a/images/tango/16x16/actions/go-jump.png b/images/tango/16x16/actions/go-jump.png new file mode 100644 index 0000000..1d218c3 Binary files /dev/null and b/images/tango/16x16/actions/go-jump.png differ diff --git a/images/tango/16x16/actions/go-last.png b/images/tango/16x16/actions/go-last.png new file mode 100644 index 0000000..6e904ef Binary files /dev/null and b/images/tango/16x16/actions/go-last.png differ diff --git a/images/tango/16x16/actions/go-next.png b/images/tango/16x16/actions/go-next.png new file mode 100644 index 0000000..6ef8de7 Binary files /dev/null and b/images/tango/16x16/actions/go-next.png differ diff --git a/images/tango/16x16/actions/go-previous.png b/images/tango/16x16/actions/go-previous.png new file mode 100644 index 0000000..659cd90 Binary files /dev/null and b/images/tango/16x16/actions/go-previous.png differ diff --git a/images/tango/16x16/actions/go-top.png b/images/tango/16x16/actions/go-top.png new file mode 100644 index 0000000..70f2c99 Binary files /dev/null and b/images/tango/16x16/actions/go-top.png differ diff --git a/images/tango/16x16/actions/go-up.png b/images/tango/16x16/actions/go-up.png new file mode 100644 index 0000000..fa9a7d7 Binary files /dev/null and b/images/tango/16x16/actions/go-up.png differ diff --git a/images/tango/16x16/actions/list-add.png b/images/tango/16x16/actions/list-add.png new file mode 100644 index 0000000..1aa7f09 Binary files /dev/null and b/images/tango/16x16/actions/list-add.png differ diff --git a/images/tango/16x16/actions/list-remove.png b/images/tango/16x16/actions/list-remove.png new file mode 100644 index 0000000..00b654e Binary files /dev/null and b/images/tango/16x16/actions/list-remove.png differ diff --git a/images/tango/16x16/actions/mail-forward.png b/images/tango/16x16/actions/mail-forward.png new file mode 100644 index 0000000..de0199b Binary files /dev/null and b/images/tango/16x16/actions/mail-forward.png differ diff --git a/images/tango/16x16/actions/mail-mark-junk.png b/images/tango/16x16/actions/mail-mark-junk.png new file mode 100644 index 0000000..f12d452 Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-junk.png differ diff --git a/images/tango/16x16/actions/mail-mark-not-junk.png b/images/tango/16x16/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..87c425f Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-not-junk.png differ diff --git a/images/tango/16x16/actions/mail-message-new.png b/images/tango/16x16/actions/mail-message-new.png new file mode 100644 index 0000000..7c68cb8 Binary files /dev/null and b/images/tango/16x16/actions/mail-message-new.png differ diff --git a/images/tango/16x16/actions/mail-reply-all.png b/images/tango/16x16/actions/mail-reply-all.png new file mode 100644 index 0000000..2017b0a Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-all.png differ diff --git a/images/tango/16x16/actions/mail-reply-sender.png b/images/tango/16x16/actions/mail-reply-sender.png new file mode 100644 index 0000000..a619741 Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-sender.png differ diff --git a/images/tango/16x16/actions/mail-send-receive.png b/images/tango/16x16/actions/mail-send-receive.png new file mode 100644 index 0000000..3eb6a9c Binary files /dev/null and b/images/tango/16x16/actions/mail-send-receive.png differ diff --git a/images/tango/16x16/actions/media-eject.png b/images/tango/16x16/actions/media-eject.png new file mode 100644 index 0000000..2084067 Binary files /dev/null and b/images/tango/16x16/actions/media-eject.png differ diff --git a/images/tango/16x16/actions/media-playback-pause.png b/images/tango/16x16/actions/media-playback-pause.png new file mode 100644 index 0000000..c8b4fe2 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-pause.png differ diff --git a/images/tango/16x16/actions/media-playback-start.png b/images/tango/16x16/actions/media-playback-start.png new file mode 100644 index 0000000..a7de0fe Binary files /dev/null and b/images/tango/16x16/actions/media-playback-start.png differ diff --git a/images/tango/16x16/actions/media-playback-stop.png b/images/tango/16x16/actions/media-playback-stop.png new file mode 100644 index 0000000..ede2815 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-stop.png differ diff --git a/images/tango/16x16/actions/media-record.png b/images/tango/16x16/actions/media-record.png new file mode 100644 index 0000000..2f66cde Binary files /dev/null and b/images/tango/16x16/actions/media-record.png differ diff --git a/images/tango/16x16/actions/media-seek-backward.png b/images/tango/16x16/actions/media-seek-backward.png new file mode 100644 index 0000000..ffcac31 Binary files /dev/null and b/images/tango/16x16/actions/media-seek-backward.png differ diff --git a/images/tango/16x16/actions/media-seek-forward.png b/images/tango/16x16/actions/media-seek-forward.png new file mode 100644 index 0000000..4d7e2cd Binary files /dev/null and b/images/tango/16x16/actions/media-seek-forward.png differ diff --git a/images/tango/16x16/actions/media-skip-backward.png b/images/tango/16x16/actions/media-skip-backward.png new file mode 100644 index 0000000..94381f5 Binary files /dev/null and b/images/tango/16x16/actions/media-skip-backward.png differ diff --git a/images/tango/16x16/actions/media-skip-forward.png b/images/tango/16x16/actions/media-skip-forward.png new file mode 100644 index 0000000..758ec6f Binary files /dev/null and b/images/tango/16x16/actions/media-skip-forward.png differ diff --git a/images/tango/16x16/actions/process-stop.png b/images/tango/16x16/actions/process-stop.png new file mode 100644 index 0000000..ab6808f Binary files /dev/null and b/images/tango/16x16/actions/process-stop.png differ diff --git a/images/tango/16x16/actions/system-lock-screen.png b/images/tango/16x16/actions/system-lock-screen.png new file mode 100644 index 0000000..f7ea0cd Binary files /dev/null and b/images/tango/16x16/actions/system-lock-screen.png differ diff --git a/images/tango/16x16/actions/system-log-out.png b/images/tango/16x16/actions/system-log-out.png new file mode 100644 index 0000000..0010931 Binary files /dev/null and b/images/tango/16x16/actions/system-log-out.png differ diff --git a/images/tango/16x16/actions/system-search.png b/images/tango/16x16/actions/system-search.png new file mode 100644 index 0000000..fd7f0b0 Binary files /dev/null and b/images/tango/16x16/actions/system-search.png differ diff --git a/images/tango/16x16/actions/system-shutdown.png b/images/tango/16x16/actions/system-shutdown.png new file mode 100644 index 0000000..afe62de Binary files /dev/null and b/images/tango/16x16/actions/system-shutdown.png differ diff --git a/images/tango/16x16/actions/tab-new.png b/images/tango/16x16/actions/tab-new.png new file mode 100644 index 0000000..3e590f6 Binary files /dev/null and b/images/tango/16x16/actions/tab-new.png differ diff --git a/images/tango/16x16/actions/view-fullscreen.png b/images/tango/16x16/actions/view-fullscreen.png new file mode 100644 index 0000000..ffdabd4 Binary files /dev/null and b/images/tango/16x16/actions/view-fullscreen.png differ diff --git a/images/tango/16x16/actions/view-refresh.png b/images/tango/16x16/actions/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/images/tango/16x16/actions/view-refresh.png differ diff --git a/images/tango/16x16/actions/window-new.png b/images/tango/16x16/actions/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/images/tango/16x16/actions/window-new.png differ diff --git a/images/tango/16x16/animations/process-working.png b/images/tango/16x16/animations/process-working.png new file mode 100644 index 0000000..984bde4 Binary files /dev/null and b/images/tango/16x16/animations/process-working.png differ diff --git a/images/tango/16x16/apps/accessories-calculator.png b/images/tango/16x16/apps/accessories-calculator.png new file mode 100644 index 0000000..9248971 Binary files /dev/null and b/images/tango/16x16/apps/accessories-calculator.png differ diff --git a/images/tango/16x16/apps/accessories-character-map.png b/images/tango/16x16/apps/accessories-character-map.png new file mode 100644 index 0000000..5dd1124 Binary files /dev/null and b/images/tango/16x16/apps/accessories-character-map.png differ diff --git a/images/tango/16x16/apps/accessories-text-editor.png b/images/tango/16x16/apps/accessories-text-editor.png new file mode 100644 index 0000000..188e1c1 Binary files /dev/null and b/images/tango/16x16/apps/accessories-text-editor.png differ diff --git a/images/tango/16x16/apps/help-browser.png b/images/tango/16x16/apps/help-browser.png new file mode 100644 index 0000000..f25fc3f Binary files /dev/null and b/images/tango/16x16/apps/help-browser.png differ diff --git a/images/tango/16x16/apps/internet-group-chat.png b/images/tango/16x16/apps/internet-group-chat.png new file mode 100644 index 0000000..f6e8325 Binary files /dev/null and b/images/tango/16x16/apps/internet-group-chat.png differ diff --git a/images/tango/16x16/apps/internet-mail.png b/images/tango/16x16/apps/internet-mail.png new file mode 100644 index 0000000..859251f Binary files /dev/null and b/images/tango/16x16/apps/internet-mail.png differ diff --git a/images/tango/16x16/apps/internet-news-reader.png b/images/tango/16x16/apps/internet-news-reader.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/images/tango/16x16/apps/internet-news-reader.png differ diff --git a/images/tango/16x16/apps/internet-web-browser.png b/images/tango/16x16/apps/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/images/tango/16x16/apps/internet-web-browser.png differ diff --git a/images/tango/16x16/apps/office-calendar.png b/images/tango/16x16/apps/office-calendar.png new file mode 100644 index 0000000..106a592 Binary files /dev/null and b/images/tango/16x16/apps/office-calendar.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-accessibility.png b/images/tango/16x16/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..b365c27 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-assistive-technology.png b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..513d817 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-font.png b/images/tango/16x16/apps/preferences-desktop-font.png new file mode 100644 index 0000000..18a0149 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-font.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..291dc1a Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-locale.png b/images/tango/16x16/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..5ef73a6 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-locale.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-multimedia.png b/images/tango/16x16/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..2e5ba43 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-remote-desktop.png b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..b790f63 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-screensaver.png b/images/tango/16x16/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dc297db Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-theme.png b/images/tango/16x16/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..fbea772 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-theme.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-wallpaper.png b/images/tango/16x16/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..e7cc834 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/16x16/apps/preferences-system-network-proxy.png b/images/tango/16x16/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bdeb79d Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/16x16/apps/preferences-system-session.png b/images/tango/16x16/apps/preferences-system-session.png new file mode 100644 index 0000000..35f8b57 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-session.png differ diff --git a/images/tango/16x16/apps/preferences-system-windows.png b/images/tango/16x16/apps/preferences-system-windows.png new file mode 100644 index 0000000..596caf9 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-windows.png differ diff --git a/images/tango/16x16/apps/system-file-manager.png b/images/tango/16x16/apps/system-file-manager.png new file mode 100644 index 0000000..60cade4 Binary files /dev/null and b/images/tango/16x16/apps/system-file-manager.png differ diff --git a/images/tango/16x16/apps/system-installer.png b/images/tango/16x16/apps/system-installer.png new file mode 100644 index 0000000..d16abcb Binary files /dev/null and b/images/tango/16x16/apps/system-installer.png differ diff --git a/images/tango/16x16/apps/system-software-update.png b/images/tango/16x16/apps/system-software-update.png new file mode 100644 index 0000000..58f19c6 Binary files /dev/null and b/images/tango/16x16/apps/system-software-update.png differ diff --git a/images/tango/16x16/apps/system-users.png b/images/tango/16x16/apps/system-users.png new file mode 100644 index 0000000..9d2d500 Binary files /dev/null and b/images/tango/16x16/apps/system-users.png differ diff --git a/images/tango/16x16/apps/utilities-system-monitor.png b/images/tango/16x16/apps/utilities-system-monitor.png new file mode 100644 index 0000000..8734e77 Binary files /dev/null and b/images/tango/16x16/apps/utilities-system-monitor.png differ diff --git a/images/tango/16x16/apps/utilities-terminal.png b/images/tango/16x16/apps/utilities-terminal.png new file mode 100644 index 0000000..c5b797a Binary files /dev/null and b/images/tango/16x16/apps/utilities-terminal.png differ diff --git a/images/tango/16x16/categories/applications-accessories.png b/images/tango/16x16/categories/applications-accessories.png new file mode 100644 index 0000000..c8d899c Binary files /dev/null and b/images/tango/16x16/categories/applications-accessories.png differ diff --git a/images/tango/16x16/categories/applications-development.png b/images/tango/16x16/categories/applications-development.png new file mode 100644 index 0000000..4375227 Binary files /dev/null and b/images/tango/16x16/categories/applications-development.png differ diff --git a/images/tango/16x16/categories/applications-games.png b/images/tango/16x16/categories/applications-games.png new file mode 100644 index 0000000..4ba874b Binary files /dev/null and b/images/tango/16x16/categories/applications-games.png differ diff --git a/images/tango/16x16/categories/applications-graphics.png b/images/tango/16x16/categories/applications-graphics.png new file mode 100644 index 0000000..4bb955f Binary files /dev/null and b/images/tango/16x16/categories/applications-graphics.png differ diff --git a/images/tango/16x16/categories/applications-internet.png b/images/tango/16x16/categories/applications-internet.png new file mode 100644 index 0000000..a588968 Binary files /dev/null and b/images/tango/16x16/categories/applications-internet.png differ diff --git a/images/tango/16x16/categories/applications-multimedia.png b/images/tango/16x16/categories/applications-multimedia.png new file mode 100644 index 0000000..3e4ced5 Binary files /dev/null and b/images/tango/16x16/categories/applications-multimedia.png differ diff --git a/images/tango/16x16/categories/applications-office.png b/images/tango/16x16/categories/applications-office.png new file mode 100644 index 0000000..f9b3bb9 Binary files /dev/null and b/images/tango/16x16/categories/applications-office.png differ diff --git a/images/tango/16x16/categories/applications-other.png b/images/tango/16x16/categories/applications-other.png new file mode 100644 index 0000000..0d49f9d Binary files /dev/null and b/images/tango/16x16/categories/applications-other.png differ diff --git a/images/tango/16x16/categories/applications-system.png b/images/tango/16x16/categories/applications-system.png new file mode 100644 index 0000000..d90ab66 Binary files /dev/null and b/images/tango/16x16/categories/applications-system.png differ diff --git a/images/tango/16x16/categories/preferences-desktop-peripherals.png b/images/tango/16x16/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..2a63cee Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/16x16/categories/preferences-desktop.png b/images/tango/16x16/categories/preferences-desktop.png new file mode 100644 index 0000000..68f916c Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop.png differ diff --git a/images/tango/16x16/categories/preferences-system.png b/images/tango/16x16/categories/preferences-system.png new file mode 100644 index 0000000..9460dfc Binary files /dev/null and b/images/tango/16x16/categories/preferences-system.png differ diff --git a/images/tango/16x16/devices/audio-card.png b/images/tango/16x16/devices/audio-card.png new file mode 100644 index 0000000..aaa7907 Binary files /dev/null and b/images/tango/16x16/devices/audio-card.png differ diff --git a/images/tango/16x16/devices/audio-input-microphone.png b/images/tango/16x16/devices/audio-input-microphone.png new file mode 100644 index 0000000..53a0393 Binary files /dev/null and b/images/tango/16x16/devices/audio-input-microphone.png differ diff --git a/images/tango/16x16/devices/battery.png b/images/tango/16x16/devices/battery.png new file mode 100644 index 0000000..8684e2a Binary files /dev/null and b/images/tango/16x16/devices/battery.png differ diff --git a/images/tango/16x16/devices/camera-photo.png b/images/tango/16x16/devices/camera-photo.png new file mode 100644 index 0000000..1e8e886 Binary files /dev/null and b/images/tango/16x16/devices/camera-photo.png differ diff --git a/images/tango/16x16/devices/camera-video.png b/images/tango/16x16/devices/camera-video.png new file mode 100644 index 0000000..98fc211 Binary files /dev/null and b/images/tango/16x16/devices/camera-video.png differ diff --git a/images/tango/16x16/devices/computer.png b/images/tango/16x16/devices/computer.png new file mode 100644 index 0000000..d0b397b Binary files /dev/null and b/images/tango/16x16/devices/computer.png differ diff --git a/images/tango/16x16/devices/drive-harddisk.png b/images/tango/16x16/devices/drive-harddisk.png new file mode 100644 index 0000000..5c3b858 Binary files /dev/null and b/images/tango/16x16/devices/drive-harddisk.png differ diff --git a/images/tango/16x16/devices/drive-optical.png b/images/tango/16x16/devices/drive-optical.png new file mode 100644 index 0000000..4ced6fe Binary files /dev/null and b/images/tango/16x16/devices/drive-optical.png differ diff --git a/images/tango/16x16/devices/drive-removable-media.png b/images/tango/16x16/devices/drive-removable-media.png new file mode 100644 index 0000000..9153898 Binary files /dev/null and b/images/tango/16x16/devices/drive-removable-media.png differ diff --git a/images/tango/16x16/devices/input-gaming.png b/images/tango/16x16/devices/input-gaming.png new file mode 100644 index 0000000..9d040ee Binary files /dev/null and b/images/tango/16x16/devices/input-gaming.png differ diff --git a/images/tango/16x16/devices/input-keyboard.png b/images/tango/16x16/devices/input-keyboard.png new file mode 100644 index 0000000..fab414b Binary files /dev/null and b/images/tango/16x16/devices/input-keyboard.png differ diff --git a/images/tango/16x16/devices/input-mouse.png b/images/tango/16x16/devices/input-mouse.png new file mode 100644 index 0000000..eeda4db Binary files /dev/null and b/images/tango/16x16/devices/input-mouse.png differ diff --git a/images/tango/16x16/devices/media-flash.png b/images/tango/16x16/devices/media-flash.png new file mode 100644 index 0000000..bef542a Binary files /dev/null and b/images/tango/16x16/devices/media-flash.png differ diff --git a/images/tango/16x16/devices/media-floppy.png b/images/tango/16x16/devices/media-floppy.png new file mode 100644 index 0000000..f1d7a19 Binary files /dev/null and b/images/tango/16x16/devices/media-floppy.png differ diff --git a/images/tango/16x16/devices/media-optical.png b/images/tango/16x16/devices/media-optical.png new file mode 100644 index 0000000..760de93 Binary files /dev/null and b/images/tango/16x16/devices/media-optical.png differ diff --git a/images/tango/16x16/devices/multimedia-player.png b/images/tango/16x16/devices/multimedia-player.png new file mode 100644 index 0000000..461e9de Binary files /dev/null and b/images/tango/16x16/devices/multimedia-player.png differ diff --git a/images/tango/16x16/devices/network-wired.png b/images/tango/16x16/devices/network-wired.png new file mode 100644 index 0000000..3ac6b35 Binary files /dev/null and b/images/tango/16x16/devices/network-wired.png differ diff --git a/images/tango/16x16/devices/network-wireless.png b/images/tango/16x16/devices/network-wireless.png new file mode 100644 index 0000000..2dc6250 Binary files /dev/null and b/images/tango/16x16/devices/network-wireless.png differ diff --git a/images/tango/16x16/devices/printer.png b/images/tango/16x16/devices/printer.png new file mode 100644 index 0000000..12a4e39 Binary files /dev/null and b/images/tango/16x16/devices/printer.png differ diff --git a/images/tango/16x16/devices/video-display.png b/images/tango/16x16/devices/video-display.png new file mode 100644 index 0000000..226881f Binary files /dev/null and b/images/tango/16x16/devices/video-display.png differ diff --git a/images/tango/16x16/emblems/emblem-favorite.png b/images/tango/16x16/emblems/emblem-favorite.png new file mode 100644 index 0000000..3acb57d Binary files /dev/null and b/images/tango/16x16/emblems/emblem-favorite.png differ diff --git a/images/tango/16x16/emblems/emblem-important.png b/images/tango/16x16/emblems/emblem-important.png new file mode 100644 index 0000000..81e9ed2 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-important.png differ diff --git a/images/tango/16x16/emblems/emblem-photos.png b/images/tango/16x16/emblems/emblem-photos.png new file mode 100644 index 0000000..ab40463 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-photos.png differ diff --git a/images/tango/16x16/emblems/emblem-readonly.png b/images/tango/16x16/emblems/emblem-readonly.png new file mode 100644 index 0000000..0466619 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-readonly.png differ diff --git a/images/tango/16x16/emblems/emblem-symbolic-link.png b/images/tango/16x16/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..800b9e8 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/16x16/emblems/emblem-system.png b/images/tango/16x16/emblems/emblem-system.png new file mode 100644 index 0000000..259ed26 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-system.png differ diff --git a/images/tango/16x16/emblems/emblem-unreadable.png b/images/tango/16x16/emblems/emblem-unreadable.png new file mode 100644 index 0000000..5c08b05 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-unreadable.png differ diff --git a/images/tango/16x16/emotes/face-angel.png b/images/tango/16x16/emotes/face-angel.png new file mode 100644 index 0000000..d2c5e94 Binary files /dev/null and b/images/tango/16x16/emotes/face-angel.png differ diff --git a/images/tango/16x16/emotes/face-crying.png b/images/tango/16x16/emotes/face-crying.png new file mode 100644 index 0000000..2620dab Binary files /dev/null and b/images/tango/16x16/emotes/face-crying.png differ diff --git a/images/tango/16x16/emotes/face-devilish.png b/images/tango/16x16/emotes/face-devilish.png new file mode 100644 index 0000000..6edf683 Binary files /dev/null and b/images/tango/16x16/emotes/face-devilish.png differ diff --git a/images/tango/16x16/emotes/face-glasses.png b/images/tango/16x16/emotes/face-glasses.png new file mode 100644 index 0000000..00c2cd4 Binary files /dev/null and b/images/tango/16x16/emotes/face-glasses.png differ diff --git a/images/tango/16x16/emotes/face-grin.png b/images/tango/16x16/emotes/face-grin.png new file mode 100644 index 0000000..0d013d5 Binary files /dev/null and b/images/tango/16x16/emotes/face-grin.png differ diff --git a/images/tango/16x16/emotes/face-kiss.png b/images/tango/16x16/emotes/face-kiss.png new file mode 100644 index 0000000..809c1cf Binary files /dev/null and b/images/tango/16x16/emotes/face-kiss.png differ diff --git a/images/tango/16x16/emotes/face-monkey.png b/images/tango/16x16/emotes/face-monkey.png new file mode 100644 index 0000000..69db8fa Binary files /dev/null and b/images/tango/16x16/emotes/face-monkey.png differ diff --git a/images/tango/16x16/emotes/face-plain.png b/images/tango/16x16/emotes/face-plain.png new file mode 100644 index 0000000..31cf984 Binary files /dev/null and b/images/tango/16x16/emotes/face-plain.png differ diff --git a/images/tango/16x16/emotes/face-sad.png b/images/tango/16x16/emotes/face-sad.png new file mode 100644 index 0000000..159c04b Binary files /dev/null and b/images/tango/16x16/emotes/face-sad.png differ diff --git a/images/tango/16x16/emotes/face-smile-big.png b/images/tango/16x16/emotes/face-smile-big.png new file mode 100644 index 0000000..9114fde Binary files /dev/null and b/images/tango/16x16/emotes/face-smile-big.png differ diff --git a/images/tango/16x16/emotes/face-smile.png b/images/tango/16x16/emotes/face-smile.png new file mode 100644 index 0000000..de862b1 Binary files /dev/null and b/images/tango/16x16/emotes/face-smile.png differ diff --git a/images/tango/16x16/emotes/face-surprise.png b/images/tango/16x16/emotes/face-surprise.png new file mode 100644 index 0000000..4b4d423 Binary files /dev/null and b/images/tango/16x16/emotes/face-surprise.png differ diff --git a/images/tango/16x16/emotes/face-wink.png b/images/tango/16x16/emotes/face-wink.png new file mode 100644 index 0000000..e2db57e Binary files /dev/null and b/images/tango/16x16/emotes/face-wink.png differ diff --git a/images/tango/16x16/mimetypes/application-certificate.png b/images/tango/16x16/mimetypes/application-certificate.png new file mode 100644 index 0000000..486913d Binary files /dev/null and b/images/tango/16x16/mimetypes/application-certificate.png differ diff --git a/images/tango/16x16/mimetypes/application-x-executable.png b/images/tango/16x16/mimetypes/application-x-executable.png new file mode 100644 index 0000000..003ded2 Binary files /dev/null and b/images/tango/16x16/mimetypes/application-x-executable.png differ diff --git a/images/tango/16x16/mimetypes/audio-x-generic.png b/images/tango/16x16/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..2bd5af9 Binary files /dev/null and b/images/tango/16x16/mimetypes/audio-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/font-x-generic.png b/images/tango/16x16/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdbc1a8 Binary files /dev/null and b/images/tango/16x16/mimetypes/font-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/image-x-generic.png b/images/tango/16x16/mimetypes/image-x-generic.png new file mode 100644 index 0000000..68da502 Binary files /dev/null and b/images/tango/16x16/mimetypes/image-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/package-x-generic.png b/images/tango/16x16/mimetypes/package-x-generic.png new file mode 100644 index 0000000..9015426 Binary files /dev/null and b/images/tango/16x16/mimetypes/package-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-html.png b/images/tango/16x16/mimetypes/text-html.png new file mode 100644 index 0000000..53014ab Binary files /dev/null and b/images/tango/16x16/mimetypes/text-html.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic-template.png b/images/tango/16x16/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..a0cc462 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic.png b/images/tango/16x16/mimetypes/text-x-generic.png new file mode 100644 index 0000000..2d7f2d6 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-x-script.png b/images/tango/16x16/mimetypes/text-x-script.png new file mode 100644 index 0000000..c923098 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-script.png differ diff --git a/images/tango/16x16/mimetypes/video-x-generic.png b/images/tango/16x16/mimetypes/video-x-generic.png new file mode 100644 index 0000000..64e7a30 Binary files /dev/null and b/images/tango/16x16/mimetypes/video-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/x-office-address-book.png b/images/tango/16x16/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..f3b5d9d Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-address-book.png differ diff --git a/images/tango/16x16/mimetypes/x-office-calendar.png b/images/tango/16x16/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..f6978d7 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-calendar.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document-template.png b/images/tango/16x16/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..d1d9e7c Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document.png b/images/tango/16x16/mimetypes/x-office-document.png new file mode 100644 index 0000000..d18082e Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing-template.png b/images/tango/16x16/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..dc384db Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing.png b/images/tango/16x16/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..ffbb9e4 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation-template.png b/images/tango/16x16/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..d90d034 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation.png b/images/tango/16x16/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..f7ea302 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..e8bf570 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet.png b/images/tango/16x16/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..a6b1268 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/16x16/places/folder-remote.png b/images/tango/16x16/places/folder-remote.png new file mode 100644 index 0000000..5234eab Binary files /dev/null and b/images/tango/16x16/places/folder-remote.png differ diff --git a/images/tango/16x16/places/folder-saved-search.png b/images/tango/16x16/places/folder-saved-search.png new file mode 100644 index 0000000..ca24a36 Binary files /dev/null and b/images/tango/16x16/places/folder-saved-search.png differ diff --git a/images/tango/16x16/places/folder.png b/images/tango/16x16/places/folder.png new file mode 100644 index 0000000..65bd0bb Binary files /dev/null and b/images/tango/16x16/places/folder.png differ diff --git a/images/tango/16x16/places/network-server.png b/images/tango/16x16/places/network-server.png new file mode 100644 index 0000000..068ffeb Binary files /dev/null and b/images/tango/16x16/places/network-server.png differ diff --git a/images/tango/16x16/places/network-workgroup.png b/images/tango/16x16/places/network-workgroup.png new file mode 100644 index 0000000..5c140d8 Binary files /dev/null and b/images/tango/16x16/places/network-workgroup.png differ diff --git a/images/tango/16x16/places/start-here.png b/images/tango/16x16/places/start-here.png new file mode 100644 index 0000000..bd516a5 Binary files /dev/null and b/images/tango/16x16/places/start-here.png differ diff --git a/images/tango/16x16/places/user-desktop.png b/images/tango/16x16/places/user-desktop.png new file mode 100644 index 0000000..4c9787c Binary files /dev/null and b/images/tango/16x16/places/user-desktop.png differ diff --git a/images/tango/16x16/places/user-home.png b/images/tango/16x16/places/user-home.png new file mode 100644 index 0000000..7b9110d Binary files /dev/null and b/images/tango/16x16/places/user-home.png differ diff --git a/images/tango/16x16/places/user-trash.png b/images/tango/16x16/places/user-trash.png new file mode 100644 index 0000000..0e0953c Binary files /dev/null and b/images/tango/16x16/places/user-trash.png differ diff --git a/images/tango/16x16/status/audio-volume-high.png b/images/tango/16x16/status/audio-volume-high.png new file mode 100644 index 0000000..ec8f00b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-high.png differ diff --git a/images/tango/16x16/status/audio-volume-low.png b/images/tango/16x16/status/audio-volume-low.png new file mode 100644 index 0000000..4d7239f Binary files /dev/null and b/images/tango/16x16/status/audio-volume-low.png differ diff --git a/images/tango/16x16/status/audio-volume-medium.png b/images/tango/16x16/status/audio-volume-medium.png new file mode 100644 index 0000000..36ca7b0 Binary files /dev/null and b/images/tango/16x16/status/audio-volume-medium.png differ diff --git a/images/tango/16x16/status/audio-volume-muted.png b/images/tango/16x16/status/audio-volume-muted.png new file mode 100644 index 0000000..af5a97b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-muted.png differ diff --git a/images/tango/16x16/status/battery-caution.png b/images/tango/16x16/status/battery-caution.png new file mode 100644 index 0000000..53a27d1 Binary files /dev/null and b/images/tango/16x16/status/battery-caution.png differ diff --git a/images/tango/16x16/status/dialog-error.png b/images/tango/16x16/status/dialog-error.png new file mode 100644 index 0000000..3bbbb4a Binary files /dev/null and b/images/tango/16x16/status/dialog-error.png differ diff --git a/images/tango/16x16/status/dialog-information.png b/images/tango/16x16/status/dialog-information.png new file mode 100644 index 0000000..8851b99 Binary files /dev/null and b/images/tango/16x16/status/dialog-information.png differ diff --git a/images/tango/16x16/status/dialog-warning.png b/images/tango/16x16/status/dialog-warning.png new file mode 100644 index 0000000..a9e4ff3 Binary files /dev/null and b/images/tango/16x16/status/dialog-warning.png differ diff --git a/images/tango/16x16/status/folder-drag-accept.png b/images/tango/16x16/status/folder-drag-accept.png new file mode 100644 index 0000000..44055dc Binary files /dev/null and b/images/tango/16x16/status/folder-drag-accept.png differ diff --git a/images/tango/16x16/status/folder-open.png b/images/tango/16x16/status/folder-open.png new file mode 100644 index 0000000..b67403d Binary files /dev/null and b/images/tango/16x16/status/folder-open.png differ diff --git a/images/tango/16x16/status/folder-visiting.png b/images/tango/16x16/status/folder-visiting.png new file mode 100644 index 0000000..9002444 Binary files /dev/null and b/images/tango/16x16/status/folder-visiting.png differ diff --git a/images/tango/16x16/status/image-loading.png b/images/tango/16x16/status/image-loading.png new file mode 100644 index 0000000..174994e Binary files /dev/null and b/images/tango/16x16/status/image-loading.png differ diff --git a/images/tango/16x16/status/image-missing.png b/images/tango/16x16/status/image-missing.png new file mode 100644 index 0000000..a644f24 Binary files /dev/null and b/images/tango/16x16/status/image-missing.png differ diff --git a/images/tango/16x16/status/mail-attachment.png b/images/tango/16x16/status/mail-attachment.png new file mode 100644 index 0000000..529bb7f Binary files /dev/null and b/images/tango/16x16/status/mail-attachment.png differ diff --git a/images/tango/16x16/status/network-error.png b/images/tango/16x16/status/network-error.png new file mode 100644 index 0000000..3f18ed0 Binary files /dev/null and b/images/tango/16x16/status/network-error.png differ diff --git a/images/tango/16x16/status/network-idle.png b/images/tango/16x16/status/network-idle.png new file mode 100644 index 0000000..0efee57 Binary files /dev/null and b/images/tango/16x16/status/network-idle.png differ diff --git a/images/tango/16x16/status/network-offline.png b/images/tango/16x16/status/network-offline.png new file mode 100644 index 0000000..1f210fc Binary files /dev/null and b/images/tango/16x16/status/network-offline.png differ diff --git a/images/tango/16x16/status/network-receive.png b/images/tango/16x16/status/network-receive.png new file mode 100644 index 0000000..b57c65c Binary files /dev/null and b/images/tango/16x16/status/network-receive.png differ diff --git a/images/tango/16x16/status/network-transmit-receive.png b/images/tango/16x16/status/network-transmit-receive.png new file mode 100644 index 0000000..271d37d Binary files /dev/null and b/images/tango/16x16/status/network-transmit-receive.png differ diff --git a/images/tango/16x16/status/network-transmit.png b/images/tango/16x16/status/network-transmit.png new file mode 100644 index 0000000..08aa28b Binary files /dev/null and b/images/tango/16x16/status/network-transmit.png differ diff --git a/images/tango/16x16/status/network-wireless-encrypted.png b/images/tango/16x16/status/network-wireless-encrypted.png new file mode 100644 index 0000000..c73e33c Binary files /dev/null and b/images/tango/16x16/status/network-wireless-encrypted.png differ diff --git a/images/tango/16x16/status/printer-error.png b/images/tango/16x16/status/printer-error.png new file mode 100644 index 0000000..21d4ded Binary files /dev/null and b/images/tango/16x16/status/printer-error.png differ diff --git a/images/tango/16x16/status/software-update-available.png b/images/tango/16x16/status/software-update-available.png new file mode 100644 index 0000000..ab8d494 Binary files /dev/null and b/images/tango/16x16/status/software-update-available.png differ diff --git a/images/tango/16x16/status/software-update-urgent.png b/images/tango/16x16/status/software-update-urgent.png new file mode 100644 index 0000000..433945d Binary files /dev/null and b/images/tango/16x16/status/software-update-urgent.png differ diff --git a/images/tango/16x16/status/user-trash-full.png b/images/tango/16x16/status/user-trash-full.png new file mode 100644 index 0000000..695d215 Binary files /dev/null and b/images/tango/16x16/status/user-trash-full.png differ diff --git a/images/tango/16x16/status/weather-clear-night.png b/images/tango/16x16/status/weather-clear-night.png new file mode 100644 index 0000000..4345752 Binary files /dev/null and b/images/tango/16x16/status/weather-clear-night.png differ diff --git a/images/tango/16x16/status/weather-clear.png b/images/tango/16x16/status/weather-clear.png new file mode 100644 index 0000000..7dc15ea Binary files /dev/null and b/images/tango/16x16/status/weather-clear.png differ diff --git a/images/tango/16x16/status/weather-few-clouds-night.png b/images/tango/16x16/status/weather-few-clouds-night.png new file mode 100644 index 0000000..d69efec Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds-night.png differ diff --git a/images/tango/16x16/status/weather-few-clouds.png b/images/tango/16x16/status/weather-few-clouds.png new file mode 100644 index 0000000..0e633a3 Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds.png differ diff --git a/images/tango/16x16/status/weather-overcast.png b/images/tango/16x16/status/weather-overcast.png new file mode 100644 index 0000000..0045129 Binary files /dev/null and b/images/tango/16x16/status/weather-overcast.png differ diff --git a/images/tango/16x16/status/weather-severe-alert.png b/images/tango/16x16/status/weather-severe-alert.png new file mode 100644 index 0000000..98e9f6c Binary files /dev/null and b/images/tango/16x16/status/weather-severe-alert.png differ diff --git a/images/tango/16x16/status/weather-showers-scattered.png b/images/tango/16x16/status/weather-showers-scattered.png new file mode 100644 index 0000000..8d10d84 Binary files /dev/null and b/images/tango/16x16/status/weather-showers-scattered.png differ diff --git a/images/tango/16x16/status/weather-showers.png b/images/tango/16x16/status/weather-showers.png new file mode 100644 index 0000000..d9685d2 Binary files /dev/null and b/images/tango/16x16/status/weather-showers.png differ diff --git a/images/tango/16x16/status/weather-snow.png b/images/tango/16x16/status/weather-snow.png new file mode 100644 index 0000000..a83d855 Binary files /dev/null and b/images/tango/16x16/status/weather-snow.png differ diff --git a/images/tango/16x16/status/weather-storm.png b/images/tango/16x16/status/weather-storm.png new file mode 100644 index 0000000..feebe1d Binary files /dev/null and b/images/tango/16x16/status/weather-storm.png differ diff --git a/images/tango/22x22/actions/address-book-new.png b/images/tango/22x22/actions/address-book-new.png new file mode 100644 index 0000000..fad446c Binary files /dev/null and b/images/tango/22x22/actions/address-book-new.png differ diff --git a/images/tango/22x22/actions/appointment-new.png b/images/tango/22x22/actions/appointment-new.png new file mode 100644 index 0000000..d676ffd Binary files /dev/null and b/images/tango/22x22/actions/appointment-new.png differ diff --git a/images/tango/22x22/actions/bookmark-new.png b/images/tango/22x22/actions/bookmark-new.png new file mode 100644 index 0000000..3ec0300 Binary files /dev/null and b/images/tango/22x22/actions/bookmark-new.png differ diff --git a/images/tango/22x22/actions/contact-new.png b/images/tango/22x22/actions/contact-new.png new file mode 100644 index 0000000..c9921be Binary files /dev/null and b/images/tango/22x22/actions/contact-new.png differ diff --git a/images/tango/22x22/actions/document-new.png b/images/tango/22x22/actions/document-new.png new file mode 100644 index 0000000..e3808a1 Binary files /dev/null and b/images/tango/22x22/actions/document-new.png differ diff --git a/images/tango/22x22/actions/document-open.png b/images/tango/22x22/actions/document-open.png new file mode 100644 index 0000000..254a6b8 Binary files /dev/null and b/images/tango/22x22/actions/document-open.png differ diff --git a/images/tango/22x22/actions/document-pdf.png b/images/tango/22x22/actions/document-pdf.png new file mode 100644 index 0000000..033a703 Binary files /dev/null and b/images/tango/22x22/actions/document-pdf.png differ diff --git a/images/tango/22x22/actions/document-print-preview.png b/images/tango/22x22/actions/document-print-preview.png new file mode 100644 index 0000000..75f43aa Binary files /dev/null and b/images/tango/22x22/actions/document-print-preview.png differ diff --git a/images/tango/22x22/actions/document-print.png b/images/tango/22x22/actions/document-print.png new file mode 100644 index 0000000..52dd67e Binary files /dev/null and b/images/tango/22x22/actions/document-print.png differ diff --git a/images/tango/22x22/actions/document-properties.png b/images/tango/22x22/actions/document-properties.png new file mode 100644 index 0000000..a5ad728 Binary files /dev/null and b/images/tango/22x22/actions/document-properties.png differ diff --git a/images/tango/22x22/actions/document-revert.png b/images/tango/22x22/actions/document-revert.png new file mode 100644 index 0000000..529abcb Binary files /dev/null and b/images/tango/22x22/actions/document-revert.png differ diff --git a/images/tango/22x22/actions/document-save-as.png b/images/tango/22x22/actions/document-save-as.png new file mode 100644 index 0000000..340a87e Binary files /dev/null and b/images/tango/22x22/actions/document-save-as.png differ diff --git a/images/tango/22x22/actions/document-save.png b/images/tango/22x22/actions/document-save.png new file mode 100644 index 0000000..a94e0ea Binary files /dev/null and b/images/tango/22x22/actions/document-save.png differ diff --git a/images/tango/22x22/actions/edit-clear.png b/images/tango/22x22/actions/edit-clear.png new file mode 100644 index 0000000..bbc77eb Binary files /dev/null and b/images/tango/22x22/actions/edit-clear.png differ diff --git a/images/tango/22x22/actions/edit-copy.png b/images/tango/22x22/actions/edit-copy.png new file mode 100644 index 0000000..345b2f1 Binary files /dev/null and b/images/tango/22x22/actions/edit-copy.png differ diff --git a/images/tango/22x22/actions/edit-cut.png b/images/tango/22x22/actions/edit-cut.png new file mode 100644 index 0000000..7017d1b Binary files /dev/null and b/images/tango/22x22/actions/edit-cut.png differ diff --git a/images/tango/22x22/actions/edit-delete.png b/images/tango/22x22/actions/edit-delete.png new file mode 100644 index 0000000..3811b64 Binary files /dev/null and b/images/tango/22x22/actions/edit-delete.png differ diff --git a/images/tango/22x22/actions/edit-find-replace.png b/images/tango/22x22/actions/edit-find-replace.png new file mode 100644 index 0000000..de3a75f Binary files /dev/null and b/images/tango/22x22/actions/edit-find-replace.png differ diff --git a/images/tango/22x22/actions/edit-find.png b/images/tango/22x22/actions/edit-find.png new file mode 100644 index 0000000..4f078cb Binary files /dev/null and b/images/tango/22x22/actions/edit-find.png differ diff --git a/images/tango/22x22/actions/edit-paste.png b/images/tango/22x22/actions/edit-paste.png new file mode 100644 index 0000000..f6a625c Binary files /dev/null and b/images/tango/22x22/actions/edit-paste.png differ diff --git a/images/tango/22x22/actions/edit-redo.png b/images/tango/22x22/actions/edit-redo.png new file mode 100644 index 0000000..576cfc7 Binary files /dev/null and b/images/tango/22x22/actions/edit-redo.png differ diff --git a/images/tango/22x22/actions/edit-select-all.png b/images/tango/22x22/actions/edit-select-all.png new file mode 100644 index 0000000..e6331c6 Binary files /dev/null and b/images/tango/22x22/actions/edit-select-all.png differ diff --git a/images/tango/22x22/actions/edit-undo.png b/images/tango/22x22/actions/edit-undo.png new file mode 100644 index 0000000..f37c696 Binary files /dev/null and b/images/tango/22x22/actions/edit-undo.png differ diff --git a/images/tango/22x22/actions/folder-new.png b/images/tango/22x22/actions/folder-new.png new file mode 100644 index 0000000..1c3dc94 Binary files /dev/null and b/images/tango/22x22/actions/folder-new.png differ diff --git a/images/tango/22x22/actions/format-indent-less.png b/images/tango/22x22/actions/format-indent-less.png new file mode 100644 index 0000000..5292012 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-less.png differ diff --git a/images/tango/22x22/actions/format-indent-more.png b/images/tango/22x22/actions/format-indent-more.png new file mode 100644 index 0000000..ad2b527 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-more.png differ diff --git a/images/tango/22x22/actions/format-justify-center.png b/images/tango/22x22/actions/format-justify-center.png new file mode 100644 index 0000000..0777a9a Binary files /dev/null and b/images/tango/22x22/actions/format-justify-center.png differ diff --git a/images/tango/22x22/actions/format-justify-fill.png b/images/tango/22x22/actions/format-justify-fill.png new file mode 100644 index 0000000..0ce4013 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-fill.png differ diff --git a/images/tango/22x22/actions/format-justify-left.png b/images/tango/22x22/actions/format-justify-left.png new file mode 100644 index 0000000..a8e1ca8 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-left.png differ diff --git a/images/tango/22x22/actions/format-justify-right.png b/images/tango/22x22/actions/format-justify-right.png new file mode 100644 index 0000000..8228d81 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-right.png differ diff --git a/images/tango/22x22/actions/format-text-bold.png b/images/tango/22x22/actions/format-text-bold.png new file mode 100644 index 0000000..7166e3d Binary files /dev/null and b/images/tango/22x22/actions/format-text-bold.png differ diff --git a/images/tango/22x22/actions/format-text-italic.png b/images/tango/22x22/actions/format-text-italic.png new file mode 100644 index 0000000..ef68fb3 Binary files /dev/null and b/images/tango/22x22/actions/format-text-italic.png differ diff --git a/images/tango/22x22/actions/format-text-strikethrough.png b/images/tango/22x22/actions/format-text-strikethrough.png new file mode 100644 index 0000000..e4ca573 Binary files /dev/null and b/images/tango/22x22/actions/format-text-strikethrough.png differ diff --git a/images/tango/22x22/actions/format-text-underline.png b/images/tango/22x22/actions/format-text-underline.png new file mode 100644 index 0000000..d33422b Binary files /dev/null and b/images/tango/22x22/actions/format-text-underline.png differ diff --git a/images/tango/22x22/actions/go-bottom.png b/images/tango/22x22/actions/go-bottom.png new file mode 100644 index 0000000..d81e071 Binary files /dev/null and b/images/tango/22x22/actions/go-bottom.png differ diff --git a/images/tango/22x22/actions/go-down.png b/images/tango/22x22/actions/go-down.png new file mode 100644 index 0000000..af23788 Binary files /dev/null and b/images/tango/22x22/actions/go-down.png differ diff --git a/images/tango/22x22/actions/go-first.png b/images/tango/22x22/actions/go-first.png new file mode 100644 index 0000000..bf0d8f2 Binary files /dev/null and b/images/tango/22x22/actions/go-first.png differ diff --git a/images/tango/22x22/actions/go-home.png b/images/tango/22x22/actions/go-home.png new file mode 100644 index 0000000..9d62109 Binary files /dev/null and b/images/tango/22x22/actions/go-home.png differ diff --git a/images/tango/22x22/actions/go-jump.png b/images/tango/22x22/actions/go-jump.png new file mode 100644 index 0000000..373dce9 Binary files /dev/null and b/images/tango/22x22/actions/go-jump.png differ diff --git a/images/tango/22x22/actions/go-last.png b/images/tango/22x22/actions/go-last.png new file mode 100644 index 0000000..32df45d Binary files /dev/null and b/images/tango/22x22/actions/go-last.png differ diff --git a/images/tango/22x22/actions/go-next.png b/images/tango/22x22/actions/go-next.png new file mode 100644 index 0000000..6f3f65d Binary files /dev/null and b/images/tango/22x22/actions/go-next.png differ diff --git a/images/tango/22x22/actions/go-previous.png b/images/tango/22x22/actions/go-previous.png new file mode 100644 index 0000000..93be3d1 Binary files /dev/null and b/images/tango/22x22/actions/go-previous.png differ diff --git a/images/tango/22x22/actions/go-top.png b/images/tango/22x22/actions/go-top.png new file mode 100644 index 0000000..96f98dd Binary files /dev/null and b/images/tango/22x22/actions/go-top.png differ diff --git a/images/tango/22x22/actions/go-up.png b/images/tango/22x22/actions/go-up.png new file mode 100644 index 0000000..b0a0cd7 Binary files /dev/null and b/images/tango/22x22/actions/go-up.png differ diff --git a/images/tango/22x22/actions/list-add.png b/images/tango/22x22/actions/list-add.png new file mode 100644 index 0000000..306d3d8 Binary files /dev/null and b/images/tango/22x22/actions/list-add.png differ diff --git a/images/tango/22x22/actions/list-remove.png b/images/tango/22x22/actions/list-remove.png new file mode 100644 index 0000000..45e5c2a Binary files /dev/null and b/images/tango/22x22/actions/list-remove.png differ diff --git a/images/tango/22x22/actions/mail-forward.png b/images/tango/22x22/actions/mail-forward.png new file mode 100644 index 0000000..51aa0b4 Binary files /dev/null and b/images/tango/22x22/actions/mail-forward.png differ diff --git a/images/tango/22x22/actions/mail-mark-junk.png b/images/tango/22x22/actions/mail-mark-junk.png new file mode 100644 index 0000000..f980138 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-junk.png differ diff --git a/images/tango/22x22/actions/mail-mark-not-junk.png b/images/tango/22x22/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..da6fb95 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-not-junk.png differ diff --git a/images/tango/22x22/actions/mail-message-new.png b/images/tango/22x22/actions/mail-message-new.png new file mode 100644 index 0000000..96ae0e9 Binary files /dev/null and b/images/tango/22x22/actions/mail-message-new.png differ diff --git a/images/tango/22x22/actions/mail-reply-all.png b/images/tango/22x22/actions/mail-reply-all.png new file mode 100644 index 0000000..c158a72 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-all.png differ diff --git a/images/tango/22x22/actions/mail-reply-sender.png b/images/tango/22x22/actions/mail-reply-sender.png new file mode 100644 index 0000000..4f077a1 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-sender.png differ diff --git a/images/tango/22x22/actions/mail-send-receive.png b/images/tango/22x22/actions/mail-send-receive.png new file mode 100644 index 0000000..69e8272 Binary files /dev/null and b/images/tango/22x22/actions/mail-send-receive.png differ diff --git a/images/tango/22x22/actions/media-eject.png b/images/tango/22x22/actions/media-eject.png new file mode 100644 index 0000000..5a232e6 Binary files /dev/null and b/images/tango/22x22/actions/media-eject.png differ diff --git a/images/tango/22x22/actions/media-playback-pause.png b/images/tango/22x22/actions/media-playback-pause.png new file mode 100644 index 0000000..ee40fc2 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-pause.png differ diff --git a/images/tango/22x22/actions/media-playback-start.png b/images/tango/22x22/actions/media-playback-start.png new file mode 100644 index 0000000..10102d8 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-start.png differ diff --git a/images/tango/22x22/actions/media-playback-stop.png b/images/tango/22x22/actions/media-playback-stop.png new file mode 100644 index 0000000..d0e4733 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-stop.png differ diff --git a/images/tango/22x22/actions/media-record.png b/images/tango/22x22/actions/media-record.png new file mode 100644 index 0000000..fb53e14 Binary files /dev/null and b/images/tango/22x22/actions/media-record.png differ diff --git a/images/tango/22x22/actions/media-seek-backward.png b/images/tango/22x22/actions/media-seek-backward.png new file mode 100644 index 0000000..e094d12 Binary files /dev/null and b/images/tango/22x22/actions/media-seek-backward.png differ diff --git a/images/tango/22x22/actions/media-seek-forward.png b/images/tango/22x22/actions/media-seek-forward.png new file mode 100644 index 0000000..b9c2c6c Binary files /dev/null and b/images/tango/22x22/actions/media-seek-forward.png differ diff --git a/images/tango/22x22/actions/media-skip-backward.png b/images/tango/22x22/actions/media-skip-backward.png new file mode 100644 index 0000000..2a5e703 Binary files /dev/null and b/images/tango/22x22/actions/media-skip-backward.png differ diff --git a/images/tango/22x22/actions/media-skip-forward.png b/images/tango/22x22/actions/media-skip-forward.png new file mode 100644 index 0000000..28bca3e Binary files /dev/null and b/images/tango/22x22/actions/media-skip-forward.png differ diff --git a/images/tango/22x22/actions/process-stop.png b/images/tango/22x22/actions/process-stop.png new file mode 100644 index 0000000..b68290b Binary files /dev/null and b/images/tango/22x22/actions/process-stop.png differ diff --git a/images/tango/22x22/actions/system-lock-screen.png b/images/tango/22x22/actions/system-lock-screen.png new file mode 100644 index 0000000..dc6b825 Binary files /dev/null and b/images/tango/22x22/actions/system-lock-screen.png differ diff --git a/images/tango/22x22/actions/system-log-out.png b/images/tango/22x22/actions/system-log-out.png new file mode 100644 index 0000000..28ac66f Binary files /dev/null and b/images/tango/22x22/actions/system-log-out.png differ diff --git a/images/tango/22x22/actions/system-search.png b/images/tango/22x22/actions/system-search.png new file mode 100644 index 0000000..4e522b2 Binary files /dev/null and b/images/tango/22x22/actions/system-search.png differ diff --git a/images/tango/22x22/actions/system-shutdown.png b/images/tango/22x22/actions/system-shutdown.png new file mode 100644 index 0000000..0c2a2d1 Binary files /dev/null and b/images/tango/22x22/actions/system-shutdown.png differ diff --git a/images/tango/22x22/actions/tab-new.png b/images/tango/22x22/actions/tab-new.png new file mode 100644 index 0000000..c7c7cf2 Binary files /dev/null and b/images/tango/22x22/actions/tab-new.png differ diff --git a/images/tango/22x22/actions/view-fullscreen.png b/images/tango/22x22/actions/view-fullscreen.png new file mode 100644 index 0000000..6f0f292 Binary files /dev/null and b/images/tango/22x22/actions/view-fullscreen.png differ diff --git a/images/tango/22x22/actions/view-refresh.png b/images/tango/22x22/actions/view-refresh.png new file mode 100644 index 0000000..cab4d02 Binary files /dev/null and b/images/tango/22x22/actions/view-refresh.png differ diff --git a/images/tango/22x22/actions/window-new.png b/images/tango/22x22/actions/window-new.png new file mode 100644 index 0000000..314f997 Binary files /dev/null and b/images/tango/22x22/actions/window-new.png differ diff --git a/images/tango/22x22/animations/process-working.png b/images/tango/22x22/animations/process-working.png new file mode 100644 index 0000000..9005de7 Binary files /dev/null and b/images/tango/22x22/animations/process-working.png differ diff --git a/images/tango/22x22/apps/accessories-calculator.png b/images/tango/22x22/apps/accessories-calculator.png new file mode 100644 index 0000000..e12d465 Binary files /dev/null and b/images/tango/22x22/apps/accessories-calculator.png differ diff --git a/images/tango/22x22/apps/accessories-character-map.png b/images/tango/22x22/apps/accessories-character-map.png new file mode 100644 index 0000000..e630c7e Binary files /dev/null and b/images/tango/22x22/apps/accessories-character-map.png differ diff --git a/images/tango/22x22/apps/accessories-text-editor.png b/images/tango/22x22/apps/accessories-text-editor.png new file mode 100644 index 0000000..c3d245d Binary files /dev/null and b/images/tango/22x22/apps/accessories-text-editor.png differ diff --git a/images/tango/22x22/apps/help-browser.png b/images/tango/22x22/apps/help-browser.png new file mode 100644 index 0000000..c67c7a6 Binary files /dev/null and b/images/tango/22x22/apps/help-browser.png differ diff --git a/images/tango/22x22/apps/internet-group-chat.png b/images/tango/22x22/apps/internet-group-chat.png new file mode 100644 index 0000000..3cac5df Binary files /dev/null and b/images/tango/22x22/apps/internet-group-chat.png differ diff --git a/images/tango/22x22/apps/internet-mail.png b/images/tango/22x22/apps/internet-mail.png new file mode 100644 index 0000000..68fc82e Binary files /dev/null and b/images/tango/22x22/apps/internet-mail.png differ diff --git a/images/tango/22x22/apps/internet-news-reader.png b/images/tango/22x22/apps/internet-news-reader.png new file mode 100644 index 0000000..43950eb Binary files /dev/null and b/images/tango/22x22/apps/internet-news-reader.png differ diff --git a/images/tango/22x22/apps/internet-web-browser.png b/images/tango/22x22/apps/internet-web-browser.png new file mode 100644 index 0000000..4125479 Binary files /dev/null and b/images/tango/22x22/apps/internet-web-browser.png differ diff --git a/images/tango/22x22/apps/office-calendar.png b/images/tango/22x22/apps/office-calendar.png new file mode 100644 index 0000000..60ad82b Binary files /dev/null and b/images/tango/22x22/apps/office-calendar.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-accessibility.png b/images/tango/22x22/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..919d735 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-assistive-technology.png b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..483e4a6 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-font.png b/images/tango/22x22/apps/preferences-desktop-font.png new file mode 100644 index 0000000..d452db7 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-font.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..c3e1328 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-locale.png b/images/tango/22x22/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..ed0480b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-locale.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-multimedia.png b/images/tango/22x22/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..e1bdf85 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-remote-desktop.png b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..d25792b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-screensaver.png b/images/tango/22x22/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..619e196 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-theme.png b/images/tango/22x22/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7b5f0ba Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-theme.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-wallpaper.png b/images/tango/22x22/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..3389e55 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/22x22/apps/preferences-system-network-proxy.png b/images/tango/22x22/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bec24de Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/22x22/apps/preferences-system-session.png b/images/tango/22x22/apps/preferences-system-session.png new file mode 100644 index 0000000..9a09875 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-session.png differ diff --git a/images/tango/22x22/apps/preferences-system-windows.png b/images/tango/22x22/apps/preferences-system-windows.png new file mode 100644 index 0000000..2caa205 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-windows.png differ diff --git a/images/tango/22x22/apps/system-file-manager.png b/images/tango/22x22/apps/system-file-manager.png new file mode 100644 index 0000000..44d6310 Binary files /dev/null and b/images/tango/22x22/apps/system-file-manager.png differ diff --git a/images/tango/22x22/apps/system-installer.png b/images/tango/22x22/apps/system-installer.png new file mode 100644 index 0000000..b75c6b1 Binary files /dev/null and b/images/tango/22x22/apps/system-installer.png differ diff --git a/images/tango/22x22/apps/system-software-update.png b/images/tango/22x22/apps/system-software-update.png new file mode 100644 index 0000000..5f7a362 Binary files /dev/null and b/images/tango/22x22/apps/system-software-update.png differ diff --git a/images/tango/22x22/apps/system-users.png b/images/tango/22x22/apps/system-users.png new file mode 100644 index 0000000..bced28c Binary files /dev/null and b/images/tango/22x22/apps/system-users.png differ diff --git a/images/tango/22x22/apps/utilities-system-monitor.png b/images/tango/22x22/apps/utilities-system-monitor.png new file mode 100644 index 0000000..f2d266f Binary files /dev/null and b/images/tango/22x22/apps/utilities-system-monitor.png differ diff --git a/images/tango/22x22/apps/utilities-terminal.png b/images/tango/22x22/apps/utilities-terminal.png new file mode 100644 index 0000000..ceb0fb9 Binary files /dev/null and b/images/tango/22x22/apps/utilities-terminal.png differ diff --git a/images/tango/22x22/categories/applications-accessories.png b/images/tango/22x22/categories/applications-accessories.png new file mode 100644 index 0000000..f619403 Binary files /dev/null and b/images/tango/22x22/categories/applications-accessories.png differ diff --git a/images/tango/22x22/categories/applications-development.png b/images/tango/22x22/categories/applications-development.png new file mode 100644 index 0000000..8ef08e2 Binary files /dev/null and b/images/tango/22x22/categories/applications-development.png differ diff --git a/images/tango/22x22/categories/applications-games.png b/images/tango/22x22/categories/applications-games.png new file mode 100644 index 0000000..cc78378 Binary files /dev/null and b/images/tango/22x22/categories/applications-games.png differ diff --git a/images/tango/22x22/categories/applications-graphics.png b/images/tango/22x22/categories/applications-graphics.png new file mode 100644 index 0000000..ca883da Binary files /dev/null and b/images/tango/22x22/categories/applications-graphics.png differ diff --git a/images/tango/22x22/categories/applications-internet.png b/images/tango/22x22/categories/applications-internet.png new file mode 100644 index 0000000..d4bfb82 Binary files /dev/null and b/images/tango/22x22/categories/applications-internet.png differ diff --git a/images/tango/22x22/categories/applications-multimedia.png b/images/tango/22x22/categories/applications-multimedia.png new file mode 100644 index 0000000..ae2d28c Binary files /dev/null and b/images/tango/22x22/categories/applications-multimedia.png differ diff --git a/images/tango/22x22/categories/applications-office.png b/images/tango/22x22/categories/applications-office.png new file mode 100644 index 0000000..7e3be9b Binary files /dev/null and b/images/tango/22x22/categories/applications-office.png differ diff --git a/images/tango/22x22/categories/applications-other.png b/images/tango/22x22/categories/applications-other.png new file mode 100644 index 0000000..308acb2 Binary files /dev/null and b/images/tango/22x22/categories/applications-other.png differ diff --git a/images/tango/22x22/categories/applications-system.png b/images/tango/22x22/categories/applications-system.png new file mode 100644 index 0000000..4decc89 Binary files /dev/null and b/images/tango/22x22/categories/applications-system.png differ diff --git a/images/tango/22x22/categories/preferences-desktop-peripherals.png b/images/tango/22x22/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..985bcde Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/22x22/categories/preferences-desktop.png b/images/tango/22x22/categories/preferences-desktop.png new file mode 100644 index 0000000..c359063 Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop.png differ diff --git a/images/tango/22x22/categories/preferences-system.png b/images/tango/22x22/categories/preferences-system.png new file mode 100644 index 0000000..cc91d65 Binary files /dev/null and b/images/tango/22x22/categories/preferences-system.png differ diff --git a/images/tango/22x22/devices/audio-card.png b/images/tango/22x22/devices/audio-card.png new file mode 100644 index 0000000..93d99aa Binary files /dev/null and b/images/tango/22x22/devices/audio-card.png differ diff --git a/images/tango/22x22/devices/audio-input-microphone.png b/images/tango/22x22/devices/audio-input-microphone.png new file mode 100644 index 0000000..496d244 Binary files /dev/null and b/images/tango/22x22/devices/audio-input-microphone.png differ diff --git a/images/tango/22x22/devices/battery.png b/images/tango/22x22/devices/battery.png new file mode 100644 index 0000000..ad45674 Binary files /dev/null and b/images/tango/22x22/devices/battery.png differ diff --git a/images/tango/22x22/devices/camera-photo.png b/images/tango/22x22/devices/camera-photo.png new file mode 100644 index 0000000..8d28baf Binary files /dev/null and b/images/tango/22x22/devices/camera-photo.png differ diff --git a/images/tango/22x22/devices/camera-video.png b/images/tango/22x22/devices/camera-video.png new file mode 100644 index 0000000..e84992c Binary files /dev/null and b/images/tango/22x22/devices/camera-video.png differ diff --git a/images/tango/22x22/devices/computer.png b/images/tango/22x22/devices/computer.png new file mode 100644 index 0000000..b6e6b39 Binary files /dev/null and b/images/tango/22x22/devices/computer.png differ diff --git a/images/tango/22x22/devices/drive-harddisk.png b/images/tango/22x22/devices/drive-harddisk.png new file mode 100644 index 0000000..da41305 Binary files /dev/null and b/images/tango/22x22/devices/drive-harddisk.png differ diff --git a/images/tango/22x22/devices/drive-optical.png b/images/tango/22x22/devices/drive-optical.png new file mode 100644 index 0000000..af2c826 Binary files /dev/null and b/images/tango/22x22/devices/drive-optical.png differ diff --git a/images/tango/22x22/devices/drive-removable-media.png b/images/tango/22x22/devices/drive-removable-media.png new file mode 100644 index 0000000..f487310 Binary files /dev/null and b/images/tango/22x22/devices/drive-removable-media.png differ diff --git a/images/tango/22x22/devices/input-gaming.png b/images/tango/22x22/devices/input-gaming.png new file mode 100644 index 0000000..18f7739 Binary files /dev/null and b/images/tango/22x22/devices/input-gaming.png differ diff --git a/images/tango/22x22/devices/input-keyboard.png b/images/tango/22x22/devices/input-keyboard.png new file mode 100644 index 0000000..6ffb232 Binary files /dev/null and b/images/tango/22x22/devices/input-keyboard.png differ diff --git a/images/tango/22x22/devices/input-mouse.png b/images/tango/22x22/devices/input-mouse.png new file mode 100644 index 0000000..c1bbc79 Binary files /dev/null and b/images/tango/22x22/devices/input-mouse.png differ diff --git a/images/tango/22x22/devices/media-flash.png b/images/tango/22x22/devices/media-flash.png new file mode 100644 index 0000000..c6a2d0c Binary files /dev/null and b/images/tango/22x22/devices/media-flash.png differ diff --git a/images/tango/22x22/devices/media-floppy.png b/images/tango/22x22/devices/media-floppy.png new file mode 100644 index 0000000..af79de8 Binary files /dev/null and b/images/tango/22x22/devices/media-floppy.png differ diff --git a/images/tango/22x22/devices/media-optical.png b/images/tango/22x22/devices/media-optical.png new file mode 100644 index 0000000..e86bfa3 Binary files /dev/null and b/images/tango/22x22/devices/media-optical.png differ diff --git a/images/tango/22x22/devices/multimedia-player.png b/images/tango/22x22/devices/multimedia-player.png new file mode 100644 index 0000000..8be0228 Binary files /dev/null and b/images/tango/22x22/devices/multimedia-player.png differ diff --git a/images/tango/22x22/devices/network-wired.png b/images/tango/22x22/devices/network-wired.png new file mode 100644 index 0000000..51c8b16 Binary files /dev/null and b/images/tango/22x22/devices/network-wired.png differ diff --git a/images/tango/22x22/devices/network-wireless.png b/images/tango/22x22/devices/network-wireless.png new file mode 100644 index 0000000..2d7851f Binary files /dev/null and b/images/tango/22x22/devices/network-wireless.png differ diff --git a/images/tango/22x22/devices/printer.png b/images/tango/22x22/devices/printer.png new file mode 100644 index 0000000..65caccf Binary files /dev/null and b/images/tango/22x22/devices/printer.png differ diff --git a/images/tango/22x22/devices/video-display.png b/images/tango/22x22/devices/video-display.png new file mode 100644 index 0000000..f244adb Binary files /dev/null and b/images/tango/22x22/devices/video-display.png differ diff --git a/images/tango/22x22/emblems/emblem-favorite.png b/images/tango/22x22/emblems/emblem-favorite.png new file mode 100644 index 0000000..9b3d7ac Binary files /dev/null and b/images/tango/22x22/emblems/emblem-favorite.png differ diff --git a/images/tango/22x22/emblems/emblem-important.png b/images/tango/22x22/emblems/emblem-important.png new file mode 100644 index 0000000..0437a0d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-important.png differ diff --git a/images/tango/22x22/emblems/emblem-photos.png b/images/tango/22x22/emblems/emblem-photos.png new file mode 100644 index 0000000..b8b1c63 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-photos.png differ diff --git a/images/tango/22x22/emblems/emblem-readonly.png b/images/tango/22x22/emblems/emblem-readonly.png new file mode 100644 index 0000000..33896d9 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-readonly.png differ diff --git a/images/tango/22x22/emblems/emblem-symbolic-link.png b/images/tango/22x22/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..d02781d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/22x22/emblems/emblem-system.png b/images/tango/22x22/emblems/emblem-system.png new file mode 100644 index 0000000..1f2b3b3 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-system.png differ diff --git a/images/tango/22x22/emblems/emblem-unreadable.png b/images/tango/22x22/emblems/emblem-unreadable.png new file mode 100644 index 0000000..6a88bdb Binary files /dev/null and b/images/tango/22x22/emblems/emblem-unreadable.png differ diff --git a/images/tango/22x22/emotes/face-angel.png b/images/tango/22x22/emotes/face-angel.png new file mode 100644 index 0000000..604bf17 Binary files /dev/null and b/images/tango/22x22/emotes/face-angel.png differ diff --git a/images/tango/22x22/emotes/face-crying.png b/images/tango/22x22/emotes/face-crying.png new file mode 100644 index 0000000..761b0e8 Binary files /dev/null and b/images/tango/22x22/emotes/face-crying.png differ diff --git a/images/tango/22x22/emotes/face-devilish.png b/images/tango/22x22/emotes/face-devilish.png new file mode 100644 index 0000000..fbd7808 Binary files /dev/null and b/images/tango/22x22/emotes/face-devilish.png differ diff --git a/images/tango/22x22/emotes/face-glasses.png b/images/tango/22x22/emotes/face-glasses.png new file mode 100644 index 0000000..5551f12 Binary files /dev/null and b/images/tango/22x22/emotes/face-glasses.png differ diff --git a/images/tango/22x22/emotes/face-grin.png b/images/tango/22x22/emotes/face-grin.png new file mode 100644 index 0000000..4513b92 Binary files /dev/null and b/images/tango/22x22/emotes/face-grin.png differ diff --git a/images/tango/22x22/emotes/face-kiss.png b/images/tango/22x22/emotes/face-kiss.png new file mode 100644 index 0000000..a5d1bdd Binary files /dev/null and b/images/tango/22x22/emotes/face-kiss.png differ diff --git a/images/tango/22x22/emotes/face-monkey.png b/images/tango/22x22/emotes/face-monkey.png new file mode 100644 index 0000000..ced7b2e Binary files /dev/null and b/images/tango/22x22/emotes/face-monkey.png differ diff --git a/images/tango/22x22/emotes/face-plain.png b/images/tango/22x22/emotes/face-plain.png new file mode 100644 index 0000000..ea0ad6a Binary files /dev/null and b/images/tango/22x22/emotes/face-plain.png differ diff --git a/images/tango/22x22/emotes/face-sad.png b/images/tango/22x22/emotes/face-sad.png new file mode 100644 index 0000000..23afcb2 Binary files /dev/null and b/images/tango/22x22/emotes/face-sad.png differ diff --git a/images/tango/22x22/emotes/face-smile-big.png b/images/tango/22x22/emotes/face-smile-big.png new file mode 100644 index 0000000..b2e8a36 Binary files /dev/null and b/images/tango/22x22/emotes/face-smile-big.png differ diff --git a/images/tango/22x22/emotes/face-smile.png b/images/tango/22x22/emotes/face-smile.png new file mode 100644 index 0000000..45ff17d Binary files /dev/null and b/images/tango/22x22/emotes/face-smile.png differ diff --git a/images/tango/22x22/emotes/face-surprise.png b/images/tango/22x22/emotes/face-surprise.png new file mode 100644 index 0000000..9bae9b6 Binary files /dev/null and b/images/tango/22x22/emotes/face-surprise.png differ diff --git a/images/tango/22x22/emotes/face-wink.png b/images/tango/22x22/emotes/face-wink.png new file mode 100644 index 0000000..cf10119 Binary files /dev/null and b/images/tango/22x22/emotes/face-wink.png differ diff --git a/images/tango/22x22/mimetypes/application-certificate.png b/images/tango/22x22/mimetypes/application-certificate.png new file mode 100644 index 0000000..9657b43 Binary files /dev/null and b/images/tango/22x22/mimetypes/application-certificate.png differ diff --git a/images/tango/22x22/mimetypes/application-x-executable.png b/images/tango/22x22/mimetypes/application-x-executable.png new file mode 100644 index 0000000..2bb2adf Binary files /dev/null and b/images/tango/22x22/mimetypes/application-x-executable.png differ diff --git a/images/tango/22x22/mimetypes/audio-x-generic.png b/images/tango/22x22/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..318bebd Binary files /dev/null and b/images/tango/22x22/mimetypes/audio-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/font-x-generic.png b/images/tango/22x22/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdc1814 Binary files /dev/null and b/images/tango/22x22/mimetypes/font-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/image-x-generic.png b/images/tango/22x22/mimetypes/image-x-generic.png new file mode 100644 index 0000000..10f4671 Binary files /dev/null and b/images/tango/22x22/mimetypes/image-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/package-x-generic.png b/images/tango/22x22/mimetypes/package-x-generic.png new file mode 100644 index 0000000..dc76287 Binary files /dev/null and b/images/tango/22x22/mimetypes/package-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-html.png b/images/tango/22x22/mimetypes/text-html.png new file mode 100644 index 0000000..51beaff Binary files /dev/null and b/images/tango/22x22/mimetypes/text-html.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic-template.png b/images/tango/22x22/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..f13f7c9 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic.png b/images/tango/22x22/mimetypes/text-x-generic.png new file mode 100644 index 0000000..d68a56c Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-x-script.png b/images/tango/22x22/mimetypes/text-x-script.png new file mode 100644 index 0000000..abf8f61 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-script.png differ diff --git a/images/tango/22x22/mimetypes/video-x-generic.png b/images/tango/22x22/mimetypes/video-x-generic.png new file mode 100644 index 0000000..6e26d9c Binary files /dev/null and b/images/tango/22x22/mimetypes/video-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/x-office-address-book.png b/images/tango/22x22/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..2e519ce Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-address-book.png differ diff --git a/images/tango/22x22/mimetypes/x-office-calendar.png b/images/tango/22x22/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..0c224e9 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-calendar.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document-template.png b/images/tango/22x22/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..18c4246 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document.png b/images/tango/22x22/mimetypes/x-office-document.png new file mode 100644 index 0000000..c9baeda Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing-template.png b/images/tango/22x22/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..a7045ab Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing.png b/images/tango/22x22/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5d84f9f Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation-template.png b/images/tango/22x22/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..1f7bc9b Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation.png b/images/tango/22x22/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..3633f53 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..ea7d467 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet.png b/images/tango/22x22/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c82d574 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/22x22/places/folder-remote.png b/images/tango/22x22/places/folder-remote.png new file mode 100644 index 0000000..82db43b Binary files /dev/null and b/images/tango/22x22/places/folder-remote.png differ diff --git a/images/tango/22x22/places/folder-saved-search.png b/images/tango/22x22/places/folder-saved-search.png new file mode 100644 index 0000000..901f4a7 Binary files /dev/null and b/images/tango/22x22/places/folder-saved-search.png differ diff --git a/images/tango/22x22/places/folder.png b/images/tango/22x22/places/folder.png new file mode 100644 index 0000000..01f45b8 Binary files /dev/null and b/images/tango/22x22/places/folder.png differ diff --git a/images/tango/22x22/places/network-server.png b/images/tango/22x22/places/network-server.png new file mode 100644 index 0000000..a0d7118 Binary files /dev/null and b/images/tango/22x22/places/network-server.png differ diff --git a/images/tango/22x22/places/network-workgroup.png b/images/tango/22x22/places/network-workgroup.png new file mode 100644 index 0000000..f96c9db Binary files /dev/null and b/images/tango/22x22/places/network-workgroup.png differ diff --git a/images/tango/22x22/places/start-here.png b/images/tango/22x22/places/start-here.png new file mode 100644 index 0000000..fc9b049 Binary files /dev/null and b/images/tango/22x22/places/start-here.png differ diff --git a/images/tango/22x22/places/user-desktop.png b/images/tango/22x22/places/user-desktop.png new file mode 100644 index 0000000..d60b2f1 Binary files /dev/null and b/images/tango/22x22/places/user-desktop.png differ diff --git a/images/tango/22x22/places/user-home.png b/images/tango/22x22/places/user-home.png new file mode 100644 index 0000000..c7eac99 Binary files /dev/null and b/images/tango/22x22/places/user-home.png differ diff --git a/images/tango/22x22/places/user-trash.png b/images/tango/22x22/places/user-trash.png new file mode 100644 index 0000000..05ff036 Binary files /dev/null and b/images/tango/22x22/places/user-trash.png differ diff --git a/images/tango/22x22/status/audio-volume-high.png b/images/tango/22x22/status/audio-volume-high.png new file mode 100644 index 0000000..1b2f30e Binary files /dev/null and b/images/tango/22x22/status/audio-volume-high.png differ diff --git a/images/tango/22x22/status/audio-volume-low.png b/images/tango/22x22/status/audio-volume-low.png new file mode 100644 index 0000000..46bcd19 Binary files /dev/null and b/images/tango/22x22/status/audio-volume-low.png differ diff --git a/images/tango/22x22/status/audio-volume-medium.png b/images/tango/22x22/status/audio-volume-medium.png new file mode 100644 index 0000000..31883ef Binary files /dev/null and b/images/tango/22x22/status/audio-volume-medium.png differ diff --git a/images/tango/22x22/status/audio-volume-muted.png b/images/tango/22x22/status/audio-volume-muted.png new file mode 100644 index 0000000..3e74c1d Binary files /dev/null and b/images/tango/22x22/status/audio-volume-muted.png differ diff --git a/images/tango/22x22/status/battery-caution.png b/images/tango/22x22/status/battery-caution.png new file mode 100644 index 0000000..456f7a4 Binary files /dev/null and b/images/tango/22x22/status/battery-caution.png differ diff --git a/images/tango/22x22/status/dialog-error.png b/images/tango/22x22/status/dialog-error.png new file mode 100644 index 0000000..7d6aaf6 Binary files /dev/null and b/images/tango/22x22/status/dialog-error.png differ diff --git a/images/tango/22x22/status/dialog-information.png b/images/tango/22x22/status/dialog-information.png new file mode 100644 index 0000000..07cf010 Binary files /dev/null and b/images/tango/22x22/status/dialog-information.png differ diff --git a/images/tango/22x22/status/dialog-warning.png b/images/tango/22x22/status/dialog-warning.png new file mode 100644 index 0000000..45b64a7 Binary files /dev/null and b/images/tango/22x22/status/dialog-warning.png differ diff --git a/images/tango/22x22/status/folder-drag-accept.png b/images/tango/22x22/status/folder-drag-accept.png new file mode 100644 index 0000000..16a2b84 Binary files /dev/null and b/images/tango/22x22/status/folder-drag-accept.png differ diff --git a/images/tango/22x22/status/folder-open.png b/images/tango/22x22/status/folder-open.png new file mode 100644 index 0000000..f81f70c Binary files /dev/null and b/images/tango/22x22/status/folder-open.png differ diff --git a/images/tango/22x22/status/folder-visiting.png b/images/tango/22x22/status/folder-visiting.png new file mode 100644 index 0000000..b4af525 Binary files /dev/null and b/images/tango/22x22/status/folder-visiting.png differ diff --git a/images/tango/22x22/status/image-loading.png b/images/tango/22x22/status/image-loading.png new file mode 100644 index 0000000..a4be885 Binary files /dev/null and b/images/tango/22x22/status/image-loading.png differ diff --git a/images/tango/22x22/status/image-missing.png b/images/tango/22x22/status/image-missing.png new file mode 100644 index 0000000..e12439a Binary files /dev/null and b/images/tango/22x22/status/image-missing.png differ diff --git a/images/tango/22x22/status/mail-attachment.png b/images/tango/22x22/status/mail-attachment.png new file mode 100644 index 0000000..c5d9633 Binary files /dev/null and b/images/tango/22x22/status/mail-attachment.png differ diff --git a/images/tango/22x22/status/network-error.png b/images/tango/22x22/status/network-error.png new file mode 100644 index 0000000..d36ce29 Binary files /dev/null and b/images/tango/22x22/status/network-error.png differ diff --git a/images/tango/22x22/status/network-idle.png b/images/tango/22x22/status/network-idle.png new file mode 100644 index 0000000..caebd98 Binary files /dev/null and b/images/tango/22x22/status/network-idle.png differ diff --git a/images/tango/22x22/status/network-offline.png b/images/tango/22x22/status/network-offline.png new file mode 100644 index 0000000..72dd12c Binary files /dev/null and b/images/tango/22x22/status/network-offline.png differ diff --git a/images/tango/22x22/status/network-receive.png b/images/tango/22x22/status/network-receive.png new file mode 100644 index 0000000..11dfa07 Binary files /dev/null and b/images/tango/22x22/status/network-receive.png differ diff --git a/images/tango/22x22/status/network-transmit-receive.png b/images/tango/22x22/status/network-transmit-receive.png new file mode 100644 index 0000000..54d145f Binary files /dev/null and b/images/tango/22x22/status/network-transmit-receive.png differ diff --git a/images/tango/22x22/status/network-transmit.png b/images/tango/22x22/status/network-transmit.png new file mode 100644 index 0000000..97b6301 Binary files /dev/null and b/images/tango/22x22/status/network-transmit.png differ diff --git a/images/tango/22x22/status/network-wireless-encrypted.png b/images/tango/22x22/status/network-wireless-encrypted.png new file mode 100644 index 0000000..712771c Binary files /dev/null and b/images/tango/22x22/status/network-wireless-encrypted.png differ diff --git a/images/tango/22x22/status/printer-error.png b/images/tango/22x22/status/printer-error.png new file mode 100644 index 0000000..63863c2 Binary files /dev/null and b/images/tango/22x22/status/printer-error.png differ diff --git a/images/tango/22x22/status/software-update-available.png b/images/tango/22x22/status/software-update-available.png new file mode 100644 index 0000000..c1d1348 Binary files /dev/null and b/images/tango/22x22/status/software-update-available.png differ diff --git a/images/tango/22x22/status/software-update-urgent.png b/images/tango/22x22/status/software-update-urgent.png new file mode 100644 index 0000000..0ce38d9 Binary files /dev/null and b/images/tango/22x22/status/software-update-urgent.png differ diff --git a/images/tango/22x22/status/user-trash-full.png b/images/tango/22x22/status/user-trash-full.png new file mode 100644 index 0000000..ffd7cc2 Binary files /dev/null and b/images/tango/22x22/status/user-trash-full.png differ diff --git a/images/tango/22x22/status/weather-clear-night.png b/images/tango/22x22/status/weather-clear-night.png new file mode 100644 index 0000000..52ea3e9 Binary files /dev/null and b/images/tango/22x22/status/weather-clear-night.png differ diff --git a/images/tango/22x22/status/weather-clear.png b/images/tango/22x22/status/weather-clear.png new file mode 100644 index 0000000..e17ca7c Binary files /dev/null and b/images/tango/22x22/status/weather-clear.png differ diff --git a/images/tango/22x22/status/weather-few-clouds-night.png b/images/tango/22x22/status/weather-few-clouds-night.png new file mode 100644 index 0000000..69fe49a Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds-night.png differ diff --git a/images/tango/22x22/status/weather-few-clouds.png b/images/tango/22x22/status/weather-few-clouds.png new file mode 100644 index 0000000..28b1147 Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds.png differ diff --git a/images/tango/22x22/status/weather-overcast.png b/images/tango/22x22/status/weather-overcast.png new file mode 100644 index 0000000..79d7bc2 Binary files /dev/null and b/images/tango/22x22/status/weather-overcast.png differ diff --git a/images/tango/22x22/status/weather-severe-alert.png b/images/tango/22x22/status/weather-severe-alert.png new file mode 100644 index 0000000..e4d09b6 Binary files /dev/null and b/images/tango/22x22/status/weather-severe-alert.png differ diff --git a/images/tango/22x22/status/weather-showers-scattered.png b/images/tango/22x22/status/weather-showers-scattered.png new file mode 100644 index 0000000..9eddd93 Binary files /dev/null and b/images/tango/22x22/status/weather-showers-scattered.png differ diff --git a/images/tango/22x22/status/weather-showers.png b/images/tango/22x22/status/weather-showers.png new file mode 100644 index 0000000..4450fb1 Binary files /dev/null and b/images/tango/22x22/status/weather-showers.png differ diff --git a/images/tango/22x22/status/weather-snow.png b/images/tango/22x22/status/weather-snow.png new file mode 100644 index 0000000..5457799 Binary files /dev/null and b/images/tango/22x22/status/weather-snow.png differ diff --git a/images/tango/22x22/status/weather-storm.png b/images/tango/22x22/status/weather-storm.png new file mode 100644 index 0000000..3b7ca9c Binary files /dev/null and b/images/tango/22x22/status/weather-storm.png differ diff --git a/images/tango/32x32/actions/address-book-new.png b/images/tango/32x32/actions/address-book-new.png new file mode 100644 index 0000000..420139d Binary files /dev/null and b/images/tango/32x32/actions/address-book-new.png differ diff --git a/images/tango/32x32/actions/appointment-new.png b/images/tango/32x32/actions/appointment-new.png new file mode 100644 index 0000000..85daef3 Binary files /dev/null and b/images/tango/32x32/actions/appointment-new.png differ diff --git a/images/tango/32x32/actions/bookmark-new.png b/images/tango/32x32/actions/bookmark-new.png new file mode 100644 index 0000000..621312a Binary files /dev/null and b/images/tango/32x32/actions/bookmark-new.png differ diff --git a/images/tango/32x32/actions/contact-new.png b/images/tango/32x32/actions/contact-new.png new file mode 100644 index 0000000..8b10c1e Binary files /dev/null and b/images/tango/32x32/actions/contact-new.png differ diff --git a/images/tango/32x32/actions/document-new.png b/images/tango/32x32/actions/document-new.png new file mode 100644 index 0000000..e6d64bb Binary files /dev/null and b/images/tango/32x32/actions/document-new.png differ diff --git a/images/tango/32x32/actions/document-open.png b/images/tango/32x32/actions/document-open.png new file mode 100644 index 0000000..f35f258 Binary files /dev/null and b/images/tango/32x32/actions/document-open.png differ diff --git a/images/tango/32x32/actions/document-pdf.png b/images/tango/32x32/actions/document-pdf.png new file mode 100644 index 0000000..194ff27 Binary files /dev/null and b/images/tango/32x32/actions/document-pdf.png differ diff --git a/images/tango/32x32/actions/document-print-preview.png b/images/tango/32x32/actions/document-print-preview.png new file mode 100644 index 0000000..772efe5 Binary files /dev/null and b/images/tango/32x32/actions/document-print-preview.png differ diff --git a/images/tango/32x32/actions/document-print.png b/images/tango/32x32/actions/document-print.png new file mode 100644 index 0000000..3ef3930 Binary files /dev/null and b/images/tango/32x32/actions/document-print.png differ diff --git a/images/tango/32x32/actions/document-properties.png b/images/tango/32x32/actions/document-properties.png new file mode 100644 index 0000000..fa697db Binary files /dev/null and b/images/tango/32x32/actions/document-properties.png differ diff --git a/images/tango/32x32/actions/document-revert.png b/images/tango/32x32/actions/document-revert.png new file mode 100644 index 0000000..3540188 Binary files /dev/null and b/images/tango/32x32/actions/document-revert.png differ diff --git a/images/tango/32x32/actions/document-save-as.png b/images/tango/32x32/actions/document-save-as.png new file mode 100644 index 0000000..5c9f6b3 Binary files /dev/null and b/images/tango/32x32/actions/document-save-as.png differ diff --git a/images/tango/32x32/actions/document-save.png b/images/tango/32x32/actions/document-save.png new file mode 100644 index 0000000..db5c52b Binary files /dev/null and b/images/tango/32x32/actions/document-save.png differ diff --git a/images/tango/32x32/actions/edit-clear.png b/images/tango/32x32/actions/edit-clear.png new file mode 100644 index 0000000..5542948 Binary files /dev/null and b/images/tango/32x32/actions/edit-clear.png differ diff --git a/images/tango/32x32/actions/edit-copy.png b/images/tango/32x32/actions/edit-copy.png new file mode 100644 index 0000000..3348ee0 Binary files /dev/null and b/images/tango/32x32/actions/edit-copy.png differ diff --git a/images/tango/32x32/actions/edit-cut.png b/images/tango/32x32/actions/edit-cut.png new file mode 100644 index 0000000..217663b Binary files /dev/null and b/images/tango/32x32/actions/edit-cut.png differ diff --git a/images/tango/32x32/actions/edit-delete.png b/images/tango/32x32/actions/edit-delete.png new file mode 100644 index 0000000..9becb3e Binary files /dev/null and b/images/tango/32x32/actions/edit-delete.png differ diff --git a/images/tango/32x32/actions/edit-find-replace.png b/images/tango/32x32/actions/edit-find-replace.png new file mode 100644 index 0000000..0f1b117 Binary files /dev/null and b/images/tango/32x32/actions/edit-find-replace.png differ diff --git a/images/tango/32x32/actions/edit-find.png b/images/tango/32x32/actions/edit-find.png new file mode 100644 index 0000000..5594785 Binary files /dev/null and b/images/tango/32x32/actions/edit-find.png differ diff --git a/images/tango/32x32/actions/edit-paste.png b/images/tango/32x32/actions/edit-paste.png new file mode 100644 index 0000000..dd429ce Binary files /dev/null and b/images/tango/32x32/actions/edit-paste.png differ diff --git a/images/tango/32x32/actions/edit-redo.png b/images/tango/32x32/actions/edit-redo.png new file mode 100644 index 0000000..3eb7b05 Binary files /dev/null and b/images/tango/32x32/actions/edit-redo.png differ diff --git a/images/tango/32x32/actions/edit-select-all.png b/images/tango/32x32/actions/edit-select-all.png new file mode 100644 index 0000000..107fc60 Binary files /dev/null and b/images/tango/32x32/actions/edit-select-all.png differ diff --git a/images/tango/32x32/actions/edit-undo.png b/images/tango/32x32/actions/edit-undo.png new file mode 100644 index 0000000..61b2ce9 Binary files /dev/null and b/images/tango/32x32/actions/edit-undo.png differ diff --git a/images/tango/32x32/actions/folder-new.png b/images/tango/32x32/actions/folder-new.png new file mode 100644 index 0000000..fcd15c0 Binary files /dev/null and b/images/tango/32x32/actions/folder-new.png differ diff --git a/images/tango/32x32/actions/format-indent-less.png b/images/tango/32x32/actions/format-indent-less.png new file mode 100644 index 0000000..7ced16f Binary files /dev/null and b/images/tango/32x32/actions/format-indent-less.png differ diff --git a/images/tango/32x32/actions/format-indent-more.png b/images/tango/32x32/actions/format-indent-more.png new file mode 100644 index 0000000..6a18867 Binary files /dev/null and b/images/tango/32x32/actions/format-indent-more.png differ diff --git a/images/tango/32x32/actions/format-justify-center.png b/images/tango/32x32/actions/format-justify-center.png new file mode 100644 index 0000000..a0db2bb Binary files /dev/null and b/images/tango/32x32/actions/format-justify-center.png differ diff --git a/images/tango/32x32/actions/format-justify-fill.png b/images/tango/32x32/actions/format-justify-fill.png new file mode 100644 index 0000000..2a34a8f Binary files /dev/null and b/images/tango/32x32/actions/format-justify-fill.png differ diff --git a/images/tango/32x32/actions/format-justify-left.png b/images/tango/32x32/actions/format-justify-left.png new file mode 100644 index 0000000..ba0e914 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-left.png differ diff --git a/images/tango/32x32/actions/format-justify-right.png b/images/tango/32x32/actions/format-justify-right.png new file mode 100644 index 0000000..2144cb9 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-right.png differ diff --git a/images/tango/32x32/actions/format-text-bold.png b/images/tango/32x32/actions/format-text-bold.png new file mode 100644 index 0000000..99ed19c Binary files /dev/null and b/images/tango/32x32/actions/format-text-bold.png differ diff --git a/images/tango/32x32/actions/format-text-italic.png b/images/tango/32x32/actions/format-text-italic.png new file mode 100644 index 0000000..87ed6f9 Binary files /dev/null and b/images/tango/32x32/actions/format-text-italic.png differ diff --git a/images/tango/32x32/actions/format-text-strikethrough.png b/images/tango/32x32/actions/format-text-strikethrough.png new file mode 100644 index 0000000..b9b55ab Binary files /dev/null and b/images/tango/32x32/actions/format-text-strikethrough.png differ diff --git a/images/tango/32x32/actions/format-text-underline.png b/images/tango/32x32/actions/format-text-underline.png new file mode 100644 index 0000000..0de6b1c Binary files /dev/null and b/images/tango/32x32/actions/format-text-underline.png differ diff --git a/images/tango/32x32/actions/go-bottom.png b/images/tango/32x32/actions/go-bottom.png new file mode 100644 index 0000000..bf973fe Binary files /dev/null and b/images/tango/32x32/actions/go-bottom.png differ diff --git a/images/tango/32x32/actions/go-down.png b/images/tango/32x32/actions/go-down.png new file mode 100644 index 0000000..dce3f15 Binary files /dev/null and b/images/tango/32x32/actions/go-down.png differ diff --git a/images/tango/32x32/actions/go-first.png b/images/tango/32x32/actions/go-first.png new file mode 100644 index 0000000..5e2a6b1 Binary files /dev/null and b/images/tango/32x32/actions/go-first.png differ diff --git a/images/tango/32x32/actions/go-home.png b/images/tango/32x32/actions/go-home.png new file mode 100644 index 0000000..a3ca103 Binary files /dev/null and b/images/tango/32x32/actions/go-home.png differ diff --git a/images/tango/32x32/actions/go-jump.png b/images/tango/32x32/actions/go-jump.png new file mode 100644 index 0000000..34dc4c0 Binary files /dev/null and b/images/tango/32x32/actions/go-jump.png differ diff --git a/images/tango/32x32/actions/go-last.png b/images/tango/32x32/actions/go-last.png new file mode 100644 index 0000000..48fe95b Binary files /dev/null and b/images/tango/32x32/actions/go-last.png differ diff --git a/images/tango/32x32/actions/go-next.png b/images/tango/32x32/actions/go-next.png new file mode 100644 index 0000000..a68e2db Binary files /dev/null and b/images/tango/32x32/actions/go-next.png differ diff --git a/images/tango/32x32/actions/go-previous.png b/images/tango/32x32/actions/go-previous.png new file mode 100644 index 0000000..c37bc04 Binary files /dev/null and b/images/tango/32x32/actions/go-previous.png differ diff --git a/images/tango/32x32/actions/go-top.png b/images/tango/32x32/actions/go-top.png new file mode 100644 index 0000000..d99552b Binary files /dev/null and b/images/tango/32x32/actions/go-top.png differ diff --git a/images/tango/32x32/actions/go-up.png b/images/tango/32x32/actions/go-up.png new file mode 100644 index 0000000..afb307b Binary files /dev/null and b/images/tango/32x32/actions/go-up.png differ diff --git a/images/tango/32x32/actions/list-add.png b/images/tango/32x32/actions/list-add.png new file mode 100644 index 0000000..2acdd8f Binary files /dev/null and b/images/tango/32x32/actions/list-add.png differ diff --git a/images/tango/32x32/actions/list-remove.png b/images/tango/32x32/actions/list-remove.png new file mode 100644 index 0000000..c5524f7 Binary files /dev/null and b/images/tango/32x32/actions/list-remove.png differ diff --git a/images/tango/32x32/actions/mail-forward.png b/images/tango/32x32/actions/mail-forward.png new file mode 100644 index 0000000..bea94ab Binary files /dev/null and b/images/tango/32x32/actions/mail-forward.png differ diff --git a/images/tango/32x32/actions/mail-mark-junk.png b/images/tango/32x32/actions/mail-mark-junk.png new file mode 100644 index 0000000..0af3006 Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-junk.png differ diff --git a/images/tango/32x32/actions/mail-mark-not-junk.png b/images/tango/32x32/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..296e92a Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-not-junk.png differ diff --git a/images/tango/32x32/actions/mail-message-new.png b/images/tango/32x32/actions/mail-message-new.png new file mode 100644 index 0000000..9f51246 Binary files /dev/null and b/images/tango/32x32/actions/mail-message-new.png differ diff --git a/images/tango/32x32/actions/mail-reply-all.png b/images/tango/32x32/actions/mail-reply-all.png new file mode 100644 index 0000000..0216e39 Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-all.png differ diff --git a/images/tango/32x32/actions/mail-reply-sender.png b/images/tango/32x32/actions/mail-reply-sender.png new file mode 100644 index 0000000..3f248dc Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-sender.png differ diff --git a/images/tango/32x32/actions/mail-send-receive.png b/images/tango/32x32/actions/mail-send-receive.png new file mode 100644 index 0000000..99349b9 Binary files /dev/null and b/images/tango/32x32/actions/mail-send-receive.png differ diff --git a/images/tango/32x32/actions/media-eject.png b/images/tango/32x32/actions/media-eject.png new file mode 100644 index 0000000..b218e7a Binary files /dev/null and b/images/tango/32x32/actions/media-eject.png differ diff --git a/images/tango/32x32/actions/media-playback-pause.png b/images/tango/32x32/actions/media-playback-pause.png new file mode 100644 index 0000000..1e9f4d5 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-pause.png differ diff --git a/images/tango/32x32/actions/media-playback-start.png b/images/tango/32x32/actions/media-playback-start.png new file mode 100644 index 0000000..66f32d8 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-start.png differ diff --git a/images/tango/32x32/actions/media-playback-stop.png b/images/tango/32x32/actions/media-playback-stop.png new file mode 100644 index 0000000..a094787 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-stop.png differ diff --git a/images/tango/32x32/actions/media-record.png b/images/tango/32x32/actions/media-record.png new file mode 100644 index 0000000..43f034b Binary files /dev/null and b/images/tango/32x32/actions/media-record.png differ diff --git a/images/tango/32x32/actions/media-seek-backward.png b/images/tango/32x32/actions/media-seek-backward.png new file mode 100644 index 0000000..535c536 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-backward.png differ diff --git a/images/tango/32x32/actions/media-seek-forward.png b/images/tango/32x32/actions/media-seek-forward.png new file mode 100644 index 0000000..96ebe01 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-forward.png differ diff --git a/images/tango/32x32/actions/media-skip-backward.png b/images/tango/32x32/actions/media-skip-backward.png new file mode 100644 index 0000000..aa08251 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-backward.png differ diff --git a/images/tango/32x32/actions/media-skip-forward.png b/images/tango/32x32/actions/media-skip-forward.png new file mode 100644 index 0000000..52be942 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-forward.png differ diff --git a/images/tango/32x32/actions/process-stop.png b/images/tango/32x32/actions/process-stop.png new file mode 100644 index 0000000..e7a8d17 Binary files /dev/null and b/images/tango/32x32/actions/process-stop.png differ diff --git a/images/tango/32x32/actions/system-lock-screen.png b/images/tango/32x32/actions/system-lock-screen.png new file mode 100644 index 0000000..2c220fc Binary files /dev/null and b/images/tango/32x32/actions/system-lock-screen.png differ diff --git a/images/tango/32x32/actions/system-log-out.png b/images/tango/32x32/actions/system-log-out.png new file mode 100644 index 0000000..fddbc2b Binary files /dev/null and b/images/tango/32x32/actions/system-log-out.png differ diff --git a/images/tango/32x32/actions/system-search.png b/images/tango/32x32/actions/system-search.png new file mode 100644 index 0000000..950d792 Binary files /dev/null and b/images/tango/32x32/actions/system-search.png differ diff --git a/images/tango/32x32/actions/system-shutdown.png b/images/tango/32x32/actions/system-shutdown.png new file mode 100644 index 0000000..36acd46 Binary files /dev/null and b/images/tango/32x32/actions/system-shutdown.png differ diff --git a/images/tango/32x32/actions/tab-new.png b/images/tango/32x32/actions/tab-new.png new file mode 100644 index 0000000..294d150 Binary files /dev/null and b/images/tango/32x32/actions/tab-new.png differ diff --git a/images/tango/32x32/actions/view-fullscreen.png b/images/tango/32x32/actions/view-fullscreen.png new file mode 100644 index 0000000..00e6b83 Binary files /dev/null and b/images/tango/32x32/actions/view-fullscreen.png differ diff --git a/images/tango/32x32/actions/view-refresh.png b/images/tango/32x32/actions/view-refresh.png new file mode 100644 index 0000000..606ea9e Binary files /dev/null and b/images/tango/32x32/actions/view-refresh.png differ diff --git a/images/tango/32x32/actions/window-new.png b/images/tango/32x32/actions/window-new.png new file mode 100644 index 0000000..e091702 Binary files /dev/null and b/images/tango/32x32/actions/window-new.png differ diff --git a/images/tango/32x32/animations/process-working.png b/images/tango/32x32/animations/process-working.png new file mode 100644 index 0000000..f19c528 Binary files /dev/null and b/images/tango/32x32/animations/process-working.png differ diff --git a/images/tango/32x32/apps/accessories-calculator.png b/images/tango/32x32/apps/accessories-calculator.png new file mode 100644 index 0000000..7de1c44 Binary files /dev/null and b/images/tango/32x32/apps/accessories-calculator.png differ diff --git a/images/tango/32x32/apps/accessories-character-map.png b/images/tango/32x32/apps/accessories-character-map.png new file mode 100644 index 0000000..a86c23e Binary files /dev/null and b/images/tango/32x32/apps/accessories-character-map.png differ diff --git a/images/tango/32x32/apps/accessories-text-editor.png b/images/tango/32x32/apps/accessories-text-editor.png new file mode 100644 index 0000000..c6b6285 Binary files /dev/null and b/images/tango/32x32/apps/accessories-text-editor.png differ diff --git a/images/tango/32x32/apps/help-browser.png b/images/tango/32x32/apps/help-browser.png new file mode 100644 index 0000000..d60425f Binary files /dev/null and b/images/tango/32x32/apps/help-browser.png differ diff --git a/images/tango/32x32/apps/internet-group-chat.png b/images/tango/32x32/apps/internet-group-chat.png new file mode 100644 index 0000000..9cb1d3b Binary files /dev/null and b/images/tango/32x32/apps/internet-group-chat.png differ diff --git a/images/tango/32x32/apps/internet-mail.png b/images/tango/32x32/apps/internet-mail.png new file mode 100644 index 0000000..dc3b9dd Binary files /dev/null and b/images/tango/32x32/apps/internet-mail.png differ diff --git a/images/tango/32x32/apps/internet-news-reader.png b/images/tango/32x32/apps/internet-news-reader.png new file mode 100644 index 0000000..ebc528f Binary files /dev/null and b/images/tango/32x32/apps/internet-news-reader.png differ diff --git a/images/tango/32x32/apps/internet-web-browser.png b/images/tango/32x32/apps/internet-web-browser.png new file mode 100644 index 0000000..10d2ed4 Binary files /dev/null and b/images/tango/32x32/apps/internet-web-browser.png differ diff --git a/images/tango/32x32/apps/office-calendar.png b/images/tango/32x32/apps/office-calendar.png new file mode 100644 index 0000000..7817c12 Binary files /dev/null and b/images/tango/32x32/apps/office-calendar.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-accessibility.png b/images/tango/32x32/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..adfe247 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-assistive-technology.png b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..70adb92 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-font.png b/images/tango/32x32/apps/preferences-desktop-font.png new file mode 100644 index 0000000..b4ec434 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-font.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..178dd29 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-locale.png b/images/tango/32x32/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..66224ae Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-locale.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-multimedia.png b/images/tango/32x32/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..56a5662 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-remote-desktop.png b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..6da67c6 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-screensaver.png b/images/tango/32x32/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dba2455 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-theme.png b/images/tango/32x32/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7af777d Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-theme.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-wallpaper.png b/images/tango/32x32/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..4eb744c Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/32x32/apps/preferences-system-network-proxy.png b/images/tango/32x32/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..e75f6f7 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/32x32/apps/preferences-system-session.png b/images/tango/32x32/apps/preferences-system-session.png new file mode 100644 index 0000000..f8c2d11 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-session.png differ diff --git a/images/tango/32x32/apps/preferences-system-windows.png b/images/tango/32x32/apps/preferences-system-windows.png new file mode 100644 index 0000000..517e48a Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-windows.png differ diff --git a/images/tango/32x32/apps/system-file-manager.png b/images/tango/32x32/apps/system-file-manager.png new file mode 100644 index 0000000..1d6ce31 Binary files /dev/null and b/images/tango/32x32/apps/system-file-manager.png differ diff --git a/images/tango/32x32/apps/system-installer.png b/images/tango/32x32/apps/system-installer.png new file mode 100644 index 0000000..c26576e Binary files /dev/null and b/images/tango/32x32/apps/system-installer.png differ diff --git a/images/tango/32x32/apps/system-software-update.png b/images/tango/32x32/apps/system-software-update.png new file mode 100644 index 0000000..470b5d4 Binary files /dev/null and b/images/tango/32x32/apps/system-software-update.png differ diff --git a/images/tango/32x32/apps/system-users.png b/images/tango/32x32/apps/system-users.png new file mode 100644 index 0000000..749c825 Binary files /dev/null and b/images/tango/32x32/apps/system-users.png differ diff --git a/images/tango/32x32/apps/utilities-system-monitor.png b/images/tango/32x32/apps/utilities-system-monitor.png new file mode 100644 index 0000000..b62959e Binary files /dev/null and b/images/tango/32x32/apps/utilities-system-monitor.png differ diff --git a/images/tango/32x32/apps/utilities-terminal.png b/images/tango/32x32/apps/utilities-terminal.png new file mode 100644 index 0000000..f86c784 Binary files /dev/null and b/images/tango/32x32/apps/utilities-terminal.png differ diff --git a/images/tango/32x32/categories/applications-accessories.png b/images/tango/32x32/categories/applications-accessories.png new file mode 100644 index 0000000..fd43de3 Binary files /dev/null and b/images/tango/32x32/categories/applications-accessories.png differ diff --git a/images/tango/32x32/categories/applications-development.png b/images/tango/32x32/categories/applications-development.png new file mode 100644 index 0000000..bc88a5c Binary files /dev/null and b/images/tango/32x32/categories/applications-development.png differ diff --git a/images/tango/32x32/categories/applications-games.png b/images/tango/32x32/categories/applications-games.png new file mode 100644 index 0000000..ff4044c Binary files /dev/null and b/images/tango/32x32/categories/applications-games.png differ diff --git a/images/tango/32x32/categories/applications-graphics.png b/images/tango/32x32/categories/applications-graphics.png new file mode 100644 index 0000000..36b77c2 Binary files /dev/null and b/images/tango/32x32/categories/applications-graphics.png differ diff --git a/images/tango/32x32/categories/applications-internet.png b/images/tango/32x32/categories/applications-internet.png new file mode 100644 index 0000000..096e848 Binary files /dev/null and b/images/tango/32x32/categories/applications-internet.png differ diff --git a/images/tango/32x32/categories/applications-multimedia.png b/images/tango/32x32/categories/applications-multimedia.png new file mode 100644 index 0000000..d09995a Binary files /dev/null and b/images/tango/32x32/categories/applications-multimedia.png differ diff --git a/images/tango/32x32/categories/applications-office.png b/images/tango/32x32/categories/applications-office.png new file mode 100644 index 0000000..efb850e Binary files /dev/null and b/images/tango/32x32/categories/applications-office.png differ diff --git a/images/tango/32x32/categories/applications-other.png b/images/tango/32x32/categories/applications-other.png new file mode 100644 index 0000000..1990dbb Binary files /dev/null and b/images/tango/32x32/categories/applications-other.png differ diff --git a/images/tango/32x32/categories/applications-system.png b/images/tango/32x32/categories/applications-system.png new file mode 100644 index 0000000..565f406 Binary files /dev/null and b/images/tango/32x32/categories/applications-system.png differ diff --git a/images/tango/32x32/categories/preferences-desktop-peripherals.png b/images/tango/32x32/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..4682b36 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/32x32/categories/preferences-desktop.png b/images/tango/32x32/categories/preferences-desktop.png new file mode 100644 index 0000000..3ec71a3 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop.png differ diff --git a/images/tango/32x32/categories/preferences-system.png b/images/tango/32x32/categories/preferences-system.png new file mode 100644 index 0000000..6e52db7 Binary files /dev/null and b/images/tango/32x32/categories/preferences-system.png differ diff --git a/images/tango/32x32/devices/audio-card.png b/images/tango/32x32/devices/audio-card.png new file mode 100644 index 0000000..5b15dd6 Binary files /dev/null and b/images/tango/32x32/devices/audio-card.png differ diff --git a/images/tango/32x32/devices/audio-input-microphone.png b/images/tango/32x32/devices/audio-input-microphone.png new file mode 100644 index 0000000..9fe3b96 Binary files /dev/null and b/images/tango/32x32/devices/audio-input-microphone.png differ diff --git a/images/tango/32x32/devices/battery.png b/images/tango/32x32/devices/battery.png new file mode 100644 index 0000000..ef08925 Binary files /dev/null and b/images/tango/32x32/devices/battery.png differ diff --git a/images/tango/32x32/devices/camera-photo.png b/images/tango/32x32/devices/camera-photo.png new file mode 100644 index 0000000..ffbffc7 Binary files /dev/null and b/images/tango/32x32/devices/camera-photo.png differ diff --git a/images/tango/32x32/devices/camera-video.png b/images/tango/32x32/devices/camera-video.png new file mode 100644 index 0000000..7473dd7 Binary files /dev/null and b/images/tango/32x32/devices/camera-video.png differ diff --git a/images/tango/32x32/devices/computer.png b/images/tango/32x32/devices/computer.png new file mode 100644 index 0000000..e34eb4e Binary files /dev/null and b/images/tango/32x32/devices/computer.png differ diff --git a/images/tango/32x32/devices/drive-harddisk.png b/images/tango/32x32/devices/drive-harddisk.png new file mode 100644 index 0000000..b34d8b7 Binary files /dev/null and b/images/tango/32x32/devices/drive-harddisk.png differ diff --git a/images/tango/32x32/devices/drive-optical.png b/images/tango/32x32/devices/drive-optical.png new file mode 100644 index 0000000..bf2e8c8 Binary files /dev/null and b/images/tango/32x32/devices/drive-optical.png differ diff --git a/images/tango/32x32/devices/drive-removable-media.png b/images/tango/32x32/devices/drive-removable-media.png new file mode 100644 index 0000000..2d28909 Binary files /dev/null and b/images/tango/32x32/devices/drive-removable-media.png differ diff --git a/images/tango/32x32/devices/input-gaming.png b/images/tango/32x32/devices/input-gaming.png new file mode 100644 index 0000000..26e2a98 Binary files /dev/null and b/images/tango/32x32/devices/input-gaming.png differ diff --git a/images/tango/32x32/devices/input-keyboard.png b/images/tango/32x32/devices/input-keyboard.png new file mode 100644 index 0000000..788c717 Binary files /dev/null and b/images/tango/32x32/devices/input-keyboard.png differ diff --git a/images/tango/32x32/devices/input-mouse.png b/images/tango/32x32/devices/input-mouse.png new file mode 100644 index 0000000..49a923c Binary files /dev/null and b/images/tango/32x32/devices/input-mouse.png differ diff --git a/images/tango/32x32/devices/media-flash.png b/images/tango/32x32/devices/media-flash.png new file mode 100644 index 0000000..7540f3f Binary files /dev/null and b/images/tango/32x32/devices/media-flash.png differ diff --git a/images/tango/32x32/devices/media-floppy.png b/images/tango/32x32/devices/media-floppy.png new file mode 100644 index 0000000..17b1274 Binary files /dev/null and b/images/tango/32x32/devices/media-floppy.png differ diff --git a/images/tango/32x32/devices/media-optical.png b/images/tango/32x32/devices/media-optical.png new file mode 100644 index 0000000..5853a75 Binary files /dev/null and b/images/tango/32x32/devices/media-optical.png differ diff --git a/images/tango/32x32/devices/multimedia-player.png b/images/tango/32x32/devices/multimedia-player.png new file mode 100644 index 0000000..8d59208 Binary files /dev/null and b/images/tango/32x32/devices/multimedia-player.png differ diff --git a/images/tango/32x32/devices/network-wired.png b/images/tango/32x32/devices/network-wired.png new file mode 100644 index 0000000..c3ca691 Binary files /dev/null and b/images/tango/32x32/devices/network-wired.png differ diff --git a/images/tango/32x32/devices/network-wireless.png b/images/tango/32x32/devices/network-wireless.png new file mode 100644 index 0000000..aa5f9f2 Binary files /dev/null and b/images/tango/32x32/devices/network-wireless.png differ diff --git a/images/tango/32x32/devices/printer.png b/images/tango/32x32/devices/printer.png new file mode 100644 index 0000000..05b49e0 Binary files /dev/null and b/images/tango/32x32/devices/printer.png differ diff --git a/images/tango/32x32/devices/video-display.png b/images/tango/32x32/devices/video-display.png new file mode 100644 index 0000000..b95ea5d Binary files /dev/null and b/images/tango/32x32/devices/video-display.png differ diff --git a/images/tango/32x32/emblems/emblem-favorite.png b/images/tango/32x32/emblems/emblem-favorite.png new file mode 100644 index 0000000..8a9ad39 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-favorite.png differ diff --git a/images/tango/32x32/emblems/emblem-important.png b/images/tango/32x32/emblems/emblem-important.png new file mode 100644 index 0000000..263fbd5 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-important.png differ diff --git a/images/tango/32x32/emblems/emblem-photos.png b/images/tango/32x32/emblems/emblem-photos.png new file mode 100644 index 0000000..f7dfd88 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-photos.png differ diff --git a/images/tango/32x32/emblems/emblem-readonly.png b/images/tango/32x32/emblems/emblem-readonly.png new file mode 100644 index 0000000..5e972d1 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-readonly.png differ diff --git a/images/tango/32x32/emblems/emblem-symbolic-link.png b/images/tango/32x32/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..56ef039 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/32x32/emblems/emblem-system.png b/images/tango/32x32/emblems/emblem-system.png new file mode 100644 index 0000000..abac7e9 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-system.png differ diff --git a/images/tango/32x32/emblems/emblem-unreadable.png b/images/tango/32x32/emblems/emblem-unreadable.png new file mode 100644 index 0000000..b94fc97 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-unreadable.png differ diff --git a/images/tango/32x32/emotes/face-angel.png b/images/tango/32x32/emotes/face-angel.png new file mode 100644 index 0000000..abd0285 Binary files /dev/null and b/images/tango/32x32/emotes/face-angel.png differ diff --git a/images/tango/32x32/emotes/face-crying.png b/images/tango/32x32/emotes/face-crying.png new file mode 100644 index 0000000..d8bc41e Binary files /dev/null and b/images/tango/32x32/emotes/face-crying.png differ diff --git a/images/tango/32x32/emotes/face-devilish.png b/images/tango/32x32/emotes/face-devilish.png new file mode 100644 index 0000000..7a3cb08 Binary files /dev/null and b/images/tango/32x32/emotes/face-devilish.png differ diff --git a/images/tango/32x32/emotes/face-glasses.png b/images/tango/32x32/emotes/face-glasses.png new file mode 100644 index 0000000..1b25394 Binary files /dev/null and b/images/tango/32x32/emotes/face-glasses.png differ diff --git a/images/tango/32x32/emotes/face-grin.png b/images/tango/32x32/emotes/face-grin.png new file mode 100644 index 0000000..2e8268f Binary files /dev/null and b/images/tango/32x32/emotes/face-grin.png differ diff --git a/images/tango/32x32/emotes/face-kiss.png b/images/tango/32x32/emotes/face-kiss.png new file mode 100644 index 0000000..1e3fa54 Binary files /dev/null and b/images/tango/32x32/emotes/face-kiss.png differ diff --git a/images/tango/32x32/emotes/face-monkey.png b/images/tango/32x32/emotes/face-monkey.png new file mode 100644 index 0000000..fb0204a Binary files /dev/null and b/images/tango/32x32/emotes/face-monkey.png differ diff --git a/images/tango/32x32/emotes/face-plain.png b/images/tango/32x32/emotes/face-plain.png new file mode 100644 index 0000000..f8128a6 Binary files /dev/null and b/images/tango/32x32/emotes/face-plain.png differ diff --git a/images/tango/32x32/emotes/face-sad.png b/images/tango/32x32/emotes/face-sad.png new file mode 100644 index 0000000..2fbecde Binary files /dev/null and b/images/tango/32x32/emotes/face-sad.png differ diff --git a/images/tango/32x32/emotes/face-smile-big.png b/images/tango/32x32/emotes/face-smile-big.png new file mode 100644 index 0000000..28704ae Binary files /dev/null and b/images/tango/32x32/emotes/face-smile-big.png differ diff --git a/images/tango/32x32/emotes/face-smile.png b/images/tango/32x32/emotes/face-smile.png new file mode 100644 index 0000000..a52e44d Binary files /dev/null and b/images/tango/32x32/emotes/face-smile.png differ diff --git a/images/tango/32x32/emotes/face-surprise.png b/images/tango/32x32/emotes/face-surprise.png new file mode 100644 index 0000000..af7cef4 Binary files /dev/null and b/images/tango/32x32/emotes/face-surprise.png differ diff --git a/images/tango/32x32/emotes/face-wink.png b/images/tango/32x32/emotes/face-wink.png new file mode 100644 index 0000000..494d785 Binary files /dev/null and b/images/tango/32x32/emotes/face-wink.png differ diff --git a/images/tango/32x32/mimetypes/application-certificate.png b/images/tango/32x32/mimetypes/application-certificate.png new file mode 100644 index 0000000..b75ba54 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-certificate.png differ diff --git a/images/tango/32x32/mimetypes/application-x-executable.png b/images/tango/32x32/mimetypes/application-x-executable.png new file mode 100644 index 0000000..8a150b8 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-x-executable.png differ diff --git a/images/tango/32x32/mimetypes/audio-x-generic.png b/images/tango/32x32/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..c60b595 Binary files /dev/null and b/images/tango/32x32/mimetypes/audio-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/font-x-generic.png b/images/tango/32x32/mimetypes/font-x-generic.png new file mode 100644 index 0000000..b166f4b Binary files /dev/null and b/images/tango/32x32/mimetypes/font-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/image-x-generic.png b/images/tango/32x32/mimetypes/image-x-generic.png new file mode 100644 index 0000000..6f118cd Binary files /dev/null and b/images/tango/32x32/mimetypes/image-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/package-x-generic.png b/images/tango/32x32/mimetypes/package-x-generic.png new file mode 100644 index 0000000..4b55b50 Binary files /dev/null and b/images/tango/32x32/mimetypes/package-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-html.png b/images/tango/32x32/mimetypes/text-html.png new file mode 100644 index 0000000..a896697 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-html.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic-template.png b/images/tango/32x32/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..5b7e649 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic.png b/images/tango/32x32/mimetypes/text-x-generic.png new file mode 100644 index 0000000..928a679 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-x-script.png b/images/tango/32x32/mimetypes/text-x-script.png new file mode 100644 index 0000000..801dcd6 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-script.png differ diff --git a/images/tango/32x32/mimetypes/video-x-generic.png b/images/tango/32x32/mimetypes/video-x-generic.png new file mode 100644 index 0000000..5d6c8d1 Binary files /dev/null and b/images/tango/32x32/mimetypes/video-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/x-office-address-book.png b/images/tango/32x32/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..53dde74 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-address-book.png differ diff --git a/images/tango/32x32/mimetypes/x-office-calendar.png b/images/tango/32x32/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..bc6db5b Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-calendar.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document-template.png b/images/tango/32x32/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..9619241 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document.png b/images/tango/32x32/mimetypes/x-office-document.png new file mode 100644 index 0000000..daf84b2 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing-template.png b/images/tango/32x32/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..6fc043c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing.png b/images/tango/32x32/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5cd66c1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation-template.png b/images/tango/32x32/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..bc348f1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation.png b/images/tango/32x32/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..047355c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..6a81f36 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet.png b/images/tango/32x32/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c0ccb7a Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/32x32/places/folder-remote.png b/images/tango/32x32/places/folder-remote.png new file mode 100644 index 0000000..3e0d9ad Binary files /dev/null and b/images/tango/32x32/places/folder-remote.png differ diff --git a/images/tango/32x32/places/folder-saved-search.png b/images/tango/32x32/places/folder-saved-search.png new file mode 100644 index 0000000..88d4541 Binary files /dev/null and b/images/tango/32x32/places/folder-saved-search.png differ diff --git a/images/tango/32x32/places/folder.png b/images/tango/32x32/places/folder.png new file mode 100644 index 0000000..472484f Binary files /dev/null and b/images/tango/32x32/places/folder.png differ diff --git a/images/tango/32x32/places/network-server.png b/images/tango/32x32/places/network-server.png new file mode 100644 index 0000000..1d38e4f Binary files /dev/null and b/images/tango/32x32/places/network-server.png differ diff --git a/images/tango/32x32/places/network-workgroup.png b/images/tango/32x32/places/network-workgroup.png new file mode 100644 index 0000000..4137b3c Binary files /dev/null and b/images/tango/32x32/places/network-workgroup.png differ diff --git a/images/tango/32x32/places/start-here.png b/images/tango/32x32/places/start-here.png new file mode 100644 index 0000000..1e54d01 Binary files /dev/null and b/images/tango/32x32/places/start-here.png differ diff --git a/images/tango/32x32/places/user-desktop.png b/images/tango/32x32/places/user-desktop.png new file mode 100644 index 0000000..57fb177 Binary files /dev/null and b/images/tango/32x32/places/user-desktop.png differ diff --git a/images/tango/32x32/places/user-home.png b/images/tango/32x32/places/user-home.png new file mode 100644 index 0000000..a29bd69 Binary files /dev/null and b/images/tango/32x32/places/user-home.png differ diff --git a/images/tango/32x32/places/user-trash.png b/images/tango/32x32/places/user-trash.png new file mode 100644 index 0000000..9b7a462 Binary files /dev/null and b/images/tango/32x32/places/user-trash.png differ diff --git a/images/tango/32x32/status/audio-volume-high.png b/images/tango/32x32/status/audio-volume-high.png new file mode 100644 index 0000000..70ae43a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-high.png differ diff --git a/images/tango/32x32/status/audio-volume-low.png b/images/tango/32x32/status/audio-volume-low.png new file mode 100644 index 0000000..34546f9 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-low.png differ diff --git a/images/tango/32x32/status/audio-volume-medium.png b/images/tango/32x32/status/audio-volume-medium.png new file mode 100644 index 0000000..4d48a9a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-medium.png differ diff --git a/images/tango/32x32/status/audio-volume-muted.png b/images/tango/32x32/status/audio-volume-muted.png new file mode 100644 index 0000000..a602c85 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-muted.png differ diff --git a/images/tango/32x32/status/battery-caution.png b/images/tango/32x32/status/battery-caution.png new file mode 100644 index 0000000..ede9788 Binary files /dev/null and b/images/tango/32x32/status/battery-caution.png differ diff --git a/images/tango/32x32/status/dialog-error.png b/images/tango/32x32/status/dialog-error.png new file mode 100644 index 0000000..cdd95ba Binary files /dev/null and b/images/tango/32x32/status/dialog-error.png differ diff --git a/images/tango/32x32/status/dialog-information.png b/images/tango/32x32/status/dialog-information.png new file mode 100644 index 0000000..2ac5747 Binary files /dev/null and b/images/tango/32x32/status/dialog-information.png differ diff --git a/images/tango/32x32/status/dialog-warning.png b/images/tango/32x32/status/dialog-warning.png new file mode 100644 index 0000000..7233d45 Binary files /dev/null and b/images/tango/32x32/status/dialog-warning.png differ diff --git a/images/tango/32x32/status/folder-drag-accept.png b/images/tango/32x32/status/folder-drag-accept.png new file mode 100644 index 0000000..2feba85 Binary files /dev/null and b/images/tango/32x32/status/folder-drag-accept.png differ diff --git a/images/tango/32x32/status/folder-open.png b/images/tango/32x32/status/folder-open.png new file mode 100644 index 0000000..901816c Binary files /dev/null and b/images/tango/32x32/status/folder-open.png differ diff --git a/images/tango/32x32/status/folder-visiting.png b/images/tango/32x32/status/folder-visiting.png new file mode 100644 index 0000000..be02b6a Binary files /dev/null and b/images/tango/32x32/status/folder-visiting.png differ diff --git a/images/tango/32x32/status/image-loading.png b/images/tango/32x32/status/image-loading.png new file mode 100644 index 0000000..9442085 Binary files /dev/null and b/images/tango/32x32/status/image-loading.png differ diff --git a/images/tango/32x32/status/image-missing.png b/images/tango/32x32/status/image-missing.png new file mode 100644 index 0000000..27fccd5 Binary files /dev/null and b/images/tango/32x32/status/image-missing.png differ diff --git a/images/tango/32x32/status/mail-attachment.png b/images/tango/32x32/status/mail-attachment.png new file mode 100644 index 0000000..78f1e1c Binary files /dev/null and b/images/tango/32x32/status/mail-attachment.png differ diff --git a/images/tango/32x32/status/network-error.png b/images/tango/32x32/status/network-error.png new file mode 100644 index 0000000..3de26e7 Binary files /dev/null and b/images/tango/32x32/status/network-error.png differ diff --git a/images/tango/32x32/status/network-idle.png b/images/tango/32x32/status/network-idle.png new file mode 100644 index 0000000..dca03af Binary files /dev/null and b/images/tango/32x32/status/network-idle.png differ diff --git a/images/tango/32x32/status/network-offline.png b/images/tango/32x32/status/network-offline.png new file mode 100644 index 0000000..428aaa5 Binary files /dev/null and b/images/tango/32x32/status/network-offline.png differ diff --git a/images/tango/32x32/status/network-receive.png b/images/tango/32x32/status/network-receive.png new file mode 100644 index 0000000..b149c5d Binary files /dev/null and b/images/tango/32x32/status/network-receive.png differ diff --git a/images/tango/32x32/status/network-transmit-receive.png b/images/tango/32x32/status/network-transmit-receive.png new file mode 100644 index 0000000..10ad0ac Binary files /dev/null and b/images/tango/32x32/status/network-transmit-receive.png differ diff --git a/images/tango/32x32/status/network-transmit.png b/images/tango/32x32/status/network-transmit.png new file mode 100644 index 0000000..aaa91b8 Binary files /dev/null and b/images/tango/32x32/status/network-transmit.png differ diff --git a/images/tango/32x32/status/network-wireless-encrypted.png b/images/tango/32x32/status/network-wireless-encrypted.png new file mode 100644 index 0000000..0d4e368 Binary files /dev/null and b/images/tango/32x32/status/network-wireless-encrypted.png differ diff --git a/images/tango/32x32/status/printer-error.png b/images/tango/32x32/status/printer-error.png new file mode 100644 index 0000000..a6aa460 Binary files /dev/null and b/images/tango/32x32/status/printer-error.png differ diff --git a/images/tango/32x32/status/software-update-available.png b/images/tango/32x32/status/software-update-available.png new file mode 100644 index 0000000..aadcb91 Binary files /dev/null and b/images/tango/32x32/status/software-update-available.png differ diff --git a/images/tango/32x32/status/software-update-urgent.png b/images/tango/32x32/status/software-update-urgent.png new file mode 100644 index 0000000..3d67d9e Binary files /dev/null and b/images/tango/32x32/status/software-update-urgent.png differ diff --git a/images/tango/32x32/status/user-trash-full.png b/images/tango/32x32/status/user-trash-full.png new file mode 100644 index 0000000..462ef39 Binary files /dev/null and b/images/tango/32x32/status/user-trash-full.png differ diff --git a/images/tango/32x32/status/weather-clear-night.png b/images/tango/32x32/status/weather-clear-night.png new file mode 100644 index 0000000..aa2714c Binary files /dev/null and b/images/tango/32x32/status/weather-clear-night.png differ diff --git a/images/tango/32x32/status/weather-clear.png b/images/tango/32x32/status/weather-clear.png new file mode 100644 index 0000000..c84e8d3 Binary files /dev/null and b/images/tango/32x32/status/weather-clear.png differ diff --git a/images/tango/32x32/status/weather-few-clouds-night.png b/images/tango/32x32/status/weather-few-clouds-night.png new file mode 100644 index 0000000..62e21d7 Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds-night.png differ diff --git a/images/tango/32x32/status/weather-few-clouds.png b/images/tango/32x32/status/weather-few-clouds.png new file mode 100644 index 0000000..8c14e0d Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds.png differ diff --git a/images/tango/32x32/status/weather-overcast.png b/images/tango/32x32/status/weather-overcast.png new file mode 100644 index 0000000..cc22e4c Binary files /dev/null and b/images/tango/32x32/status/weather-overcast.png differ diff --git a/images/tango/32x32/status/weather-severe-alert.png b/images/tango/32x32/status/weather-severe-alert.png new file mode 100644 index 0000000..fb75808 Binary files /dev/null and b/images/tango/32x32/status/weather-severe-alert.png differ diff --git a/images/tango/32x32/status/weather-showers-scattered.png b/images/tango/32x32/status/weather-showers-scattered.png new file mode 100644 index 0000000..6e85a7b Binary files /dev/null and b/images/tango/32x32/status/weather-showers-scattered.png differ diff --git a/images/tango/32x32/status/weather-showers.png b/images/tango/32x32/status/weather-showers.png new file mode 100644 index 0000000..0074348 Binary files /dev/null and b/images/tango/32x32/status/weather-showers.png differ diff --git a/images/tango/32x32/status/weather-snow.png b/images/tango/32x32/status/weather-snow.png new file mode 100644 index 0000000..fef6e4d Binary files /dev/null and b/images/tango/32x32/status/weather-snow.png differ diff --git a/images/tango/32x32/status/weather-storm.png b/images/tango/32x32/status/weather-storm.png new file mode 100644 index 0000000..8a7db96 Binary files /dev/null and b/images/tango/32x32/status/weather-storm.png differ diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..5d2dd15 --- /dev/null +++ b/main.cpp @@ -0,0 +1,57 @@ +#include "cmainwindow.h" + +#include + +#include +#include +#include + +#include "csplashscreen.h" + + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + + a.setApplicationVersion(APP_VERSION); + a.setApplicationDisplayName("pictureConvert"); + a.setOrganizationName("WIN-DESIGN"); + a.setOrganizationDomain("windesign.at"); + a.setApplicationName("pictureConvert"); + + QSettings settings; + + QFile f(":qdarkstyle/style.qss"); + if (!f.exists()) + { + printf("Unable to set stylesheet, file not found\n"); + } + else + { + f.open(QFile::ReadOnly | QFile::Text); + QTextStream ts(&f); + a.setStyleSheet(ts.readAll()); + } + + QPixmap pixmap(":/images/splash.png"); + QFont splashFont; + cSplashScreen* lpSplash = new cSplashScreen(pixmap, splashFont); + + lpSplash->show(); + a.processEvents(); + + lpSplash->showStatusMessage(QObject::tr("
initializing...")); + + cMainWindow w(lpSplash); + + + if(settings.value("main/maximized").toBool()) + w.showMaximized(); + else + w.show(); + + lpSplash->finish(&w); + delete lpSplash; + + return a.exec(); +} diff --git a/picturePrint.pro b/picturePrint.pro new file mode 100644 index 0000000..3732027 --- /dev/null +++ b/picturePrint.pro @@ -0,0 +1,72 @@ +VERSION = 0.0.1.0 +QMAKE_TARGET_COMPANY = WIN-DESIGN +QMAKE_TARGET_PRODUCT = picturePrint +QMAKE_TARGET_DESCRIPTION = picturePrint +QMAKE_TARGET_COPYRIGHT = (c) 2020 WIN-DESIGN + +QT += core gui sql multimedia concurrent + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 + +win32-msvc* { + contains(QT_ARCH, i386) { + message("msvc 32-bit") + } else { + message("msvc 64-bit") + } +} + +win32-g++ { + message("mingw") + INCLUDEPATH += C:\dev\3rdParty\exiv2\include C:\dev\3rdParty\libraw C:\dev\3rdParty\libjpeg\include C:\dev\3rdParty\opencv\include dng + LIBS += -LC:\dev\3rdParty\exiv2\lib -lexiv2.dll -LC:\dev\3rdParty\libraw\lib -LC:\dev\3rdParty\opencv\x64\mingw\lib -lraw -lws2_32 -lz -lopencv_core412.dll -lopencv_imgproc412.dll +} + +unix { + message("*nix") + LIBS += -lraw -lexiv2 +} + +QMAKE_CXXFLAGS += -DLIBRAW_NODLL -DLIBRAW_NOTHREADS + +# The following define makes your compiler emit warnings if you use +# any Qt feature that has been marked deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS +DEFINES += APP_VERSION=\\\"$$VERSION\\\" + +# You can also make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + common.cpp \ + csplashscreen.cpp \ + main.cpp \ + cmainwindow.cpp + +HEADERS += \ + cmainwindow.h \ + common.h \ + csplashscreen.h + +FORMS += \ + cmainwindow.ui + +TRANSLATIONS += \ + picturePrint_de_AT.ts + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target + +RESOURCES += \ + pictureprint.qrc \ + qdarkstyle/style.qrc + +DISTFILES += diff --git a/picturePrint_de_AT.ts b/picturePrint_de_AT.ts new file mode 100644 index 0000000..932da4d --- /dev/null +++ b/picturePrint_de_AT.ts @@ -0,0 +1,3 @@ + + + diff --git a/pictureprint.qrc b/pictureprint.qrc new file mode 100644 index 0000000..8fe1cfa --- /dev/null +++ b/pictureprint.qrc @@ -0,0 +1,659 @@ + + + images/splash.png + + + images/tango/16x16/actions/address-book-new.png + images/tango/16x16/actions/appointment-new.png + images/tango/16x16/actions/bookmark-new.png + images/tango/16x16/actions/contact-new.png + images/tango/16x16/actions/document-new.png + images/tango/16x16/actions/document-open.png + images/tango/16x16/actions/document-print-preview.png + images/tango/16x16/actions/document-print.png + images/tango/16x16/actions/document-pdf.png + images/tango/16x16/actions/document-properties.png + images/tango/16x16/actions/document-revert.png + images/tango/16x16/actions/document-save-as.png + images/tango/16x16/actions/document-save.png + images/tango/16x16/actions/edit-clear.png + images/tango/16x16/actions/edit-copy.png + images/tango/16x16/actions/edit-cut.png + images/tango/16x16/actions/edit-delete.png + images/tango/16x16/actions/edit-find-replace.png + images/tango/16x16/actions/edit-find.png + images/tango/16x16/actions/edit-paste.png + images/tango/16x16/actions/edit-redo.png + images/tango/16x16/actions/edit-select-all.png + images/tango/16x16/actions/edit-undo.png + images/tango/16x16/actions/folder-new.png + images/tango/16x16/actions/format-indent-less.png + images/tango/16x16/actions/format-indent-more.png + images/tango/16x16/actions/format-justify-center.png + images/tango/16x16/actions/format-justify-fill.png + images/tango/16x16/actions/format-justify-left.png + images/tango/16x16/actions/format-justify-right.png + images/tango/16x16/actions/format-text-bold.png + images/tango/16x16/actions/format-text-italic.png + images/tango/16x16/actions/format-text-strikethrough.png + images/tango/16x16/actions/format-text-underline.png + images/tango/16x16/actions/go-bottom.png + images/tango/16x16/actions/go-down.png + images/tango/16x16/actions/go-first.png + images/tango/16x16/actions/go-home.png + images/tango/16x16/actions/go-jump.png + images/tango/16x16/actions/go-last.png + images/tango/16x16/actions/go-next.png + images/tango/16x16/actions/go-previous.png + images/tango/16x16/actions/go-top.png + images/tango/16x16/actions/go-up.png + images/tango/16x16/actions/list-add.png + images/tango/16x16/actions/list-remove.png + images/tango/16x16/actions/mail-forward.png + images/tango/16x16/actions/mail-mark-junk.png + images/tango/16x16/actions/mail-mark-not-junk.png + images/tango/16x16/actions/mail-message-new.png + images/tango/16x16/actions/mail-reply-all.png + images/tango/16x16/actions/mail-reply-sender.png + images/tango/16x16/actions/mail-send-receive.png + images/tango/16x16/actions/media-eject.png + images/tango/16x16/actions/media-playback-pause.png + images/tango/16x16/actions/media-playback-start.png + images/tango/16x16/actions/media-playback-stop.png + images/tango/16x16/actions/media-record.png + images/tango/16x16/actions/media-seek-backward.png + images/tango/16x16/actions/media-seek-forward.png + images/tango/16x16/actions/media-skip-backward.png + images/tango/16x16/actions/media-skip-forward.png + images/tango/16x16/actions/process-stop.png + images/tango/16x16/actions/system-lock-screen.png + images/tango/16x16/actions/system-log-out.png + images/tango/16x16/actions/system-search.png + images/tango/16x16/actions/system-shutdown.png + images/tango/16x16/actions/tab-new.png + images/tango/16x16/actions/view-fullscreen.png + images/tango/16x16/actions/view-refresh.png + images/tango/16x16/actions/window-new.png + images/tango/16x16/animations/process-working.png + images/tango/16x16/apps/accessories-calculator.png + images/tango/16x16/apps/accessories-character-map.png + images/tango/16x16/apps/accessories-text-editor.png + images/tango/16x16/apps/help-browser.png + images/tango/16x16/apps/internet-group-chat.png + images/tango/16x16/apps/internet-mail.png + images/tango/16x16/apps/internet-news-reader.png + images/tango/16x16/apps/internet-web-browser.png + images/tango/16x16/apps/office-calendar.png + images/tango/16x16/apps/preferences-desktop-accessibility.png + images/tango/16x16/apps/preferences-desktop-assistive-technology.png + images/tango/16x16/apps/preferences-desktop-font.png + images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/16x16/apps/preferences-desktop-locale.png + images/tango/16x16/apps/preferences-desktop-multimedia.png + images/tango/16x16/apps/preferences-desktop-remote-desktop.png + images/tango/16x16/apps/preferences-desktop-screensaver.png + images/tango/16x16/apps/preferences-desktop-theme.png + images/tango/16x16/apps/preferences-desktop-wallpaper.png + images/tango/16x16/apps/preferences-system-network-proxy.png + images/tango/16x16/apps/preferences-system-session.png + images/tango/16x16/apps/preferences-system-windows.png + images/tango/16x16/apps/system-file-manager.png + images/tango/16x16/apps/system-installer.png + images/tango/16x16/apps/system-software-update.png + images/tango/16x16/apps/system-users.png + images/tango/16x16/apps/utilities-system-monitor.png + images/tango/16x16/apps/utilities-terminal.png + images/tango/16x16/categories/applications-accessories.png + images/tango/16x16/categories/applications-development.png + images/tango/16x16/categories/applications-games.png + images/tango/16x16/categories/applications-graphics.png + images/tango/16x16/categories/applications-internet.png + images/tango/16x16/categories/applications-multimedia.png + images/tango/16x16/categories/applications-office.png + images/tango/16x16/categories/applications-other.png + images/tango/16x16/categories/applications-system.png + images/tango/16x16/categories/preferences-desktop-peripherals.png + images/tango/16x16/categories/preferences-desktop.png + images/tango/16x16/categories/preferences-system.png + images/tango/16x16/devices/audio-card.png + images/tango/16x16/devices/audio-input-microphone.png + images/tango/16x16/devices/battery.png + images/tango/16x16/devices/camera-photo.png + images/tango/16x16/devices/camera-video.png + images/tango/16x16/devices/computer.png + images/tango/16x16/devices/drive-harddisk.png + images/tango/16x16/devices/drive-optical.png + images/tango/16x16/devices/drive-removable-media.png + images/tango/16x16/devices/input-gaming.png + images/tango/16x16/devices/input-keyboard.png + images/tango/16x16/devices/input-mouse.png + images/tango/16x16/devices/media-flash.png + images/tango/16x16/devices/media-floppy.png + images/tango/16x16/devices/media-optical.png + images/tango/16x16/devices/multimedia-player.png + images/tango/16x16/devices/network-wired.png + images/tango/16x16/devices/network-wireless.png + images/tango/16x16/devices/printer.png + images/tango/16x16/devices/video-display.png + images/tango/16x16/emblems/emblem-favorite.png + images/tango/16x16/emblems/emblem-important.png + images/tango/16x16/emblems/emblem-photos.png + images/tango/16x16/emblems/emblem-readonly.png + images/tango/16x16/emblems/emblem-symbolic-link.png + images/tango/16x16/emblems/emblem-system.png + images/tango/16x16/emblems/emblem-unreadable.png + images/tango/16x16/emotes/face-angel.png + images/tango/16x16/emotes/face-crying.png + images/tango/16x16/emotes/face-devilish.png + images/tango/16x16/emotes/face-glasses.png + images/tango/16x16/emotes/face-grin.png + images/tango/16x16/emotes/face-kiss.png + images/tango/16x16/emotes/face-monkey.png + images/tango/16x16/emotes/face-plain.png + images/tango/16x16/emotes/face-sad.png + images/tango/16x16/emotes/face-smile-big.png + images/tango/16x16/emotes/face-smile.png + images/tango/16x16/emotes/face-surprise.png + images/tango/16x16/emotes/face-wink.png + images/tango/16x16/mimetypes/application-certificate.png + images/tango/16x16/mimetypes/application-x-executable.png + images/tango/16x16/mimetypes/audio-x-generic.png + images/tango/16x16/mimetypes/font-x-generic.png + images/tango/16x16/mimetypes/image-x-generic.png + images/tango/16x16/mimetypes/package-x-generic.png + images/tango/16x16/mimetypes/text-html.png + images/tango/16x16/mimetypes/text-x-generic-template.png + images/tango/16x16/mimetypes/text-x-generic.png + images/tango/16x16/mimetypes/text-x-script.png + images/tango/16x16/mimetypes/video-x-generic.png + images/tango/16x16/mimetypes/x-office-address-book.png + images/tango/16x16/mimetypes/x-office-calendar.png + images/tango/16x16/mimetypes/x-office-document-template.png + images/tango/16x16/mimetypes/x-office-document.png + images/tango/16x16/mimetypes/x-office-drawing-template.png + images/tango/16x16/mimetypes/x-office-drawing.png + images/tango/16x16/mimetypes/x-office-presentation-template.png + images/tango/16x16/mimetypes/x-office-presentation.png + images/tango/16x16/mimetypes/x-office-spreadsheet-template.png + images/tango/16x16/mimetypes/x-office-spreadsheet.png + images/tango/16x16/places/folder-remote.png + images/tango/16x16/places/folder-saved-search.png + images/tango/16x16/places/folder.png + images/tango/16x16/places/network-server.png + images/tango/16x16/places/network-workgroup.png + images/tango/16x16/places/start-here.png + images/tango/16x16/places/user-desktop.png + images/tango/16x16/places/user-home.png + images/tango/16x16/places/user-trash.png + images/tango/16x16/status/audio-volume-high.png + images/tango/16x16/status/audio-volume-low.png + images/tango/16x16/status/audio-volume-medium.png + images/tango/16x16/status/audio-volume-muted.png + images/tango/16x16/status/battery-caution.png + images/tango/16x16/status/dialog-error.png + images/tango/16x16/status/dialog-information.png + images/tango/16x16/status/dialog-warning.png + images/tango/16x16/status/folder-drag-accept.png + images/tango/16x16/status/folder-open.png + images/tango/16x16/status/folder-visiting.png + images/tango/16x16/status/image-loading.png + images/tango/16x16/status/image-missing.png + images/tango/16x16/status/mail-attachment.png + images/tango/16x16/status/network-error.png + images/tango/16x16/status/network-idle.png + images/tango/16x16/status/network-offline.png + images/tango/16x16/status/network-receive.png + images/tango/16x16/status/network-transmit-receive.png + images/tango/16x16/status/network-transmit.png + images/tango/16x16/status/network-wireless-encrypted.png + images/tango/16x16/status/printer-error.png + images/tango/16x16/status/software-update-available.png + images/tango/16x16/status/software-update-urgent.png + images/tango/16x16/status/user-trash-full.png + images/tango/16x16/status/weather-clear-night.png + images/tango/16x16/status/weather-clear.png + images/tango/16x16/status/weather-few-clouds-night.png + images/tango/16x16/status/weather-few-clouds.png + images/tango/16x16/status/weather-overcast.png + images/tango/16x16/status/weather-severe-alert.png + images/tango/16x16/status/weather-showers-scattered.png + images/tango/16x16/status/weather-showers.png + images/tango/16x16/status/weather-snow.png + images/tango/16x16/status/weather-storm.png + images/tango/22x22/actions/address-book-new.png + images/tango/22x22/actions/appointment-new.png + images/tango/22x22/actions/bookmark-new.png + images/tango/22x22/actions/contact-new.png + images/tango/22x22/actions/document-new.png + images/tango/22x22/actions/document-open.png + images/tango/22x22/actions/document-print-preview.png + images/tango/22x22/actions/document-print.png + images/tango/22x22/actions/document-pdf.png + images/tango/22x22/actions/document-properties.png + images/tango/22x22/actions/document-revert.png + images/tango/22x22/actions/document-save-as.png + images/tango/22x22/actions/document-save.png + images/tango/22x22/actions/edit-clear.png + images/tango/22x22/actions/edit-copy.png + images/tango/22x22/actions/edit-cut.png + images/tango/22x22/actions/edit-delete.png + images/tango/22x22/actions/edit-find-replace.png + images/tango/22x22/actions/edit-find.png + images/tango/22x22/actions/edit-paste.png + images/tango/22x22/actions/edit-redo.png + images/tango/22x22/actions/edit-select-all.png + images/tango/22x22/actions/edit-undo.png + images/tango/22x22/actions/folder-new.png + images/tango/22x22/actions/format-indent-less.png + images/tango/22x22/actions/format-indent-more.png + images/tango/22x22/actions/format-justify-center.png + images/tango/22x22/actions/format-justify-fill.png + images/tango/22x22/actions/format-justify-left.png + images/tango/22x22/actions/format-justify-right.png + images/tango/22x22/actions/format-text-bold.png + images/tango/22x22/actions/format-text-italic.png + images/tango/22x22/actions/format-text-strikethrough.png + images/tango/22x22/actions/format-text-underline.png + images/tango/22x22/actions/go-bottom.png + images/tango/22x22/actions/go-down.png + images/tango/22x22/actions/go-first.png + images/tango/22x22/actions/go-home.png + images/tango/22x22/actions/go-jump.png + images/tango/22x22/actions/go-last.png + images/tango/22x22/actions/go-next.png + images/tango/22x22/actions/go-previous.png + images/tango/22x22/actions/go-top.png + images/tango/22x22/actions/go-up.png + images/tango/22x22/actions/list-add.png + images/tango/22x22/actions/list-remove.png + images/tango/22x22/actions/mail-forward.png + images/tango/22x22/actions/mail-mark-junk.png + images/tango/22x22/actions/mail-mark-not-junk.png + images/tango/22x22/actions/mail-message-new.png + images/tango/22x22/actions/mail-reply-all.png + images/tango/22x22/actions/mail-reply-sender.png + images/tango/22x22/actions/mail-send-receive.png + images/tango/22x22/actions/media-eject.png + images/tango/22x22/actions/media-playback-pause.png + images/tango/22x22/actions/media-playback-start.png + images/tango/22x22/actions/media-playback-stop.png + images/tango/22x22/actions/media-record.png + images/tango/22x22/actions/media-seek-backward.png + images/tango/22x22/actions/media-seek-forward.png + images/tango/22x22/actions/media-skip-backward.png + images/tango/22x22/actions/media-skip-forward.png + images/tango/22x22/actions/process-stop.png + images/tango/22x22/actions/system-lock-screen.png + images/tango/22x22/actions/system-log-out.png + images/tango/22x22/actions/system-search.png + images/tango/22x22/actions/system-shutdown.png + images/tango/22x22/actions/tab-new.png + images/tango/22x22/actions/view-fullscreen.png + images/tango/22x22/actions/view-refresh.png + images/tango/22x22/actions/window-new.png + images/tango/22x22/animations/process-working.png + images/tango/22x22/apps/accessories-calculator.png + images/tango/22x22/apps/accessories-character-map.png + images/tango/22x22/apps/accessories-text-editor.png + images/tango/22x22/apps/help-browser.png + images/tango/22x22/apps/internet-group-chat.png + images/tango/22x22/apps/internet-mail.png + images/tango/22x22/apps/internet-news-reader.png + images/tango/22x22/apps/internet-web-browser.png + images/tango/22x22/apps/office-calendar.png + images/tango/22x22/apps/preferences-desktop-accessibility.png + images/tango/22x22/apps/preferences-desktop-assistive-technology.png + images/tango/22x22/apps/preferences-desktop-font.png + images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/22x22/apps/preferences-desktop-locale.png + images/tango/22x22/apps/preferences-desktop-multimedia.png + images/tango/22x22/apps/preferences-desktop-remote-desktop.png + images/tango/22x22/apps/preferences-desktop-screensaver.png + images/tango/22x22/apps/preferences-desktop-theme.png + images/tango/22x22/apps/preferences-desktop-wallpaper.png + images/tango/22x22/apps/preferences-system-network-proxy.png + images/tango/22x22/apps/preferences-system-session.png + images/tango/22x22/apps/preferences-system-windows.png + images/tango/22x22/apps/system-file-manager.png + images/tango/22x22/apps/system-installer.png + images/tango/22x22/apps/system-software-update.png + images/tango/22x22/apps/system-users.png + images/tango/22x22/apps/utilities-system-monitor.png + images/tango/22x22/apps/utilities-terminal.png + images/tango/22x22/categories/applications-accessories.png + images/tango/22x22/categories/applications-development.png + images/tango/22x22/categories/applications-games.png + images/tango/22x22/categories/applications-graphics.png + images/tango/22x22/categories/applications-internet.png + images/tango/22x22/categories/applications-multimedia.png + images/tango/22x22/categories/applications-office.png + images/tango/22x22/categories/applications-other.png + images/tango/22x22/categories/applications-system.png + images/tango/22x22/categories/preferences-desktop-peripherals.png + images/tango/22x22/categories/preferences-desktop.png + images/tango/22x22/categories/preferences-system.png + images/tango/22x22/devices/audio-card.png + images/tango/22x22/devices/audio-input-microphone.png + images/tango/22x22/devices/battery.png + images/tango/22x22/devices/camera-photo.png + images/tango/22x22/devices/camera-video.png + images/tango/22x22/devices/computer.png + images/tango/22x22/devices/drive-harddisk.png + images/tango/22x22/devices/drive-optical.png + images/tango/22x22/devices/drive-removable-media.png + images/tango/22x22/devices/input-gaming.png + images/tango/22x22/devices/input-keyboard.png + images/tango/22x22/devices/input-mouse.png + images/tango/22x22/devices/media-flash.png + images/tango/22x22/devices/media-floppy.png + images/tango/22x22/devices/media-optical.png + images/tango/22x22/devices/multimedia-player.png + images/tango/22x22/devices/network-wired.png + images/tango/22x22/devices/network-wireless.png + images/tango/22x22/devices/printer.png + images/tango/22x22/devices/video-display.png + images/tango/22x22/emblems/emblem-favorite.png + images/tango/22x22/emblems/emblem-important.png + images/tango/22x22/emblems/emblem-photos.png + images/tango/22x22/emblems/emblem-readonly.png + images/tango/22x22/emblems/emblem-symbolic-link.png + images/tango/22x22/emblems/emblem-system.png + images/tango/22x22/emblems/emblem-unreadable.png + images/tango/22x22/emotes/face-angel.png + images/tango/22x22/emotes/face-crying.png + images/tango/22x22/emotes/face-devilish.png + images/tango/22x22/emotes/face-glasses.png + images/tango/22x22/emotes/face-grin.png + images/tango/22x22/emotes/face-kiss.png + images/tango/22x22/emotes/face-monkey.png + images/tango/22x22/emotes/face-plain.png + images/tango/22x22/emotes/face-sad.png + images/tango/22x22/emotes/face-smile-big.png + images/tango/22x22/emotes/face-smile.png + images/tango/22x22/emotes/face-surprise.png + images/tango/22x22/emotes/face-wink.png + images/tango/22x22/mimetypes/application-certificate.png + images/tango/22x22/mimetypes/application-x-executable.png + images/tango/22x22/mimetypes/audio-x-generic.png + images/tango/22x22/mimetypes/font-x-generic.png + images/tango/22x22/mimetypes/image-x-generic.png + images/tango/22x22/mimetypes/package-x-generic.png + images/tango/22x22/mimetypes/text-html.png + images/tango/22x22/mimetypes/text-x-generic-template.png + images/tango/22x22/mimetypes/text-x-generic.png + images/tango/22x22/mimetypes/text-x-script.png + images/tango/22x22/mimetypes/video-x-generic.png + images/tango/22x22/mimetypes/x-office-address-book.png + images/tango/22x22/mimetypes/x-office-calendar.png + images/tango/22x22/mimetypes/x-office-document-template.png + images/tango/22x22/mimetypes/x-office-document.png + images/tango/22x22/mimetypes/x-office-drawing-template.png + images/tango/22x22/mimetypes/x-office-drawing.png + images/tango/22x22/mimetypes/x-office-presentation-template.png + images/tango/22x22/mimetypes/x-office-presentation.png + images/tango/22x22/mimetypes/x-office-spreadsheet-template.png + images/tango/22x22/mimetypes/x-office-spreadsheet.png + images/tango/22x22/places/folder-remote.png + images/tango/22x22/places/folder-saved-search.png + images/tango/22x22/places/folder.png + images/tango/22x22/places/network-server.png + images/tango/22x22/places/network-workgroup.png + images/tango/22x22/places/start-here.png + images/tango/22x22/places/user-desktop.png + images/tango/22x22/places/user-home.png + images/tango/22x22/places/user-trash.png + images/tango/22x22/status/audio-volume-high.png + images/tango/22x22/status/audio-volume-low.png + images/tango/22x22/status/audio-volume-medium.png + images/tango/22x22/status/audio-volume-muted.png + images/tango/22x22/status/battery-caution.png + images/tango/22x22/status/dialog-error.png + images/tango/22x22/status/dialog-information.png + images/tango/22x22/status/dialog-warning.png + images/tango/22x22/status/folder-drag-accept.png + images/tango/22x22/status/folder-open.png + images/tango/22x22/status/folder-visiting.png + images/tango/22x22/status/image-loading.png + images/tango/22x22/status/image-missing.png + images/tango/22x22/status/mail-attachment.png + images/tango/22x22/status/network-error.png + images/tango/22x22/status/network-idle.png + images/tango/22x22/status/network-offline.png + images/tango/22x22/status/network-receive.png + images/tango/22x22/status/network-transmit-receive.png + images/tango/22x22/status/network-transmit.png + images/tango/22x22/status/network-wireless-encrypted.png + images/tango/22x22/status/printer-error.png + images/tango/22x22/status/software-update-available.png + images/tango/22x22/status/software-update-urgent.png + images/tango/22x22/status/user-trash-full.png + images/tango/22x22/status/weather-clear-night.png + images/tango/22x22/status/weather-clear.png + images/tango/22x22/status/weather-few-clouds-night.png + images/tango/22x22/status/weather-few-clouds.png + images/tango/22x22/status/weather-overcast.png + images/tango/22x22/status/weather-severe-alert.png + images/tango/22x22/status/weather-showers-scattered.png + images/tango/22x22/status/weather-showers.png + images/tango/22x22/status/weather-snow.png + images/tango/22x22/status/weather-storm.png + images/tango/32x32/actions/address-book-new.png + images/tango/32x32/actions/appointment-new.png + images/tango/32x32/actions/bookmark-new.png + images/tango/32x32/actions/contact-new.png + images/tango/32x32/actions/document-new.png + images/tango/32x32/actions/document-open.png + images/tango/32x32/actions/document-print-preview.png + images/tango/32x32/actions/document-print.png + images/tango/32x32/actions/document-pdf.png + images/tango/32x32/actions/document-properties.png + images/tango/32x32/actions/document-revert.png + images/tango/32x32/actions/document-save-as.png + images/tango/32x32/actions/document-save.png + images/tango/32x32/actions/edit-clear.png + images/tango/32x32/actions/edit-copy.png + images/tango/32x32/actions/edit-cut.png + images/tango/32x32/actions/edit-delete.png + images/tango/32x32/actions/edit-find-replace.png + images/tango/32x32/actions/edit-find.png + images/tango/32x32/actions/edit-paste.png + images/tango/32x32/actions/edit-redo.png + images/tango/32x32/actions/edit-select-all.png + images/tango/32x32/actions/edit-undo.png + images/tango/32x32/actions/folder-new.png + images/tango/32x32/actions/format-indent-less.png + images/tango/32x32/actions/format-indent-more.png + images/tango/32x32/actions/format-justify-center.png + images/tango/32x32/actions/format-justify-fill.png + images/tango/32x32/actions/format-justify-left.png + images/tango/32x32/actions/format-justify-right.png + images/tango/32x32/actions/format-text-bold.png + images/tango/32x32/actions/format-text-italic.png + images/tango/32x32/actions/format-text-strikethrough.png + images/tango/32x32/actions/format-text-underline.png + images/tango/32x32/actions/go-bottom.png + images/tango/32x32/actions/go-down.png + images/tango/32x32/actions/go-first.png + images/tango/32x32/actions/go-home.png + images/tango/32x32/actions/go-jump.png + images/tango/32x32/actions/go-last.png + images/tango/32x32/actions/go-next.png + images/tango/32x32/actions/go-previous.png + images/tango/32x32/actions/go-top.png + images/tango/32x32/actions/go-up.png + images/tango/32x32/actions/list-add.png + images/tango/32x32/actions/list-remove.png + images/tango/32x32/actions/mail-forward.png + images/tango/32x32/actions/mail-mark-junk.png + images/tango/32x32/actions/mail-mark-not-junk.png + images/tango/32x32/actions/mail-message-new.png + images/tango/32x32/actions/mail-reply-all.png + images/tango/32x32/actions/mail-reply-sender.png + images/tango/32x32/actions/mail-send-receive.png + images/tango/32x32/actions/media-eject.png + images/tango/32x32/actions/media-playback-pause.png + images/tango/32x32/actions/media-playback-start.png + images/tango/32x32/actions/media-playback-stop.png + images/tango/32x32/actions/media-record.png + images/tango/32x32/actions/media-seek-backward.png + images/tango/32x32/actions/media-seek-forward.png + images/tango/32x32/actions/media-skip-backward.png + images/tango/32x32/actions/media-skip-forward.png + images/tango/32x32/actions/process-stop.png + images/tango/32x32/actions/system-lock-screen.png + images/tango/32x32/actions/system-log-out.png + images/tango/32x32/actions/system-search.png + images/tango/32x32/actions/system-shutdown.png + images/tango/32x32/actions/tab-new.png + images/tango/32x32/actions/view-fullscreen.png + images/tango/32x32/actions/view-refresh.png + images/tango/32x32/actions/window-new.png + images/tango/32x32/animations/process-working.png + images/tango/32x32/apps/accessories-calculator.png + images/tango/32x32/apps/accessories-character-map.png + images/tango/32x32/apps/accessories-text-editor.png + images/tango/32x32/apps/help-browser.png + images/tango/32x32/apps/internet-group-chat.png + images/tango/32x32/apps/internet-mail.png + images/tango/32x32/apps/internet-news-reader.png + images/tango/32x32/apps/internet-web-browser.png + images/tango/32x32/apps/office-calendar.png + images/tango/32x32/apps/preferences-desktop-accessibility.png + images/tango/32x32/apps/preferences-desktop-assistive-technology.png + images/tango/32x32/apps/preferences-desktop-font.png + images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/32x32/apps/preferences-desktop-locale.png + images/tango/32x32/apps/preferences-desktop-multimedia.png + images/tango/32x32/apps/preferences-desktop-remote-desktop.png + images/tango/32x32/apps/preferences-desktop-screensaver.png + images/tango/32x32/apps/preferences-desktop-theme.png + images/tango/32x32/apps/preferences-desktop-wallpaper.png + images/tango/32x32/apps/preferences-system-network-proxy.png + images/tango/32x32/apps/preferences-system-session.png + images/tango/32x32/apps/preferences-system-windows.png + images/tango/32x32/apps/system-file-manager.png + images/tango/32x32/apps/system-installer.png + images/tango/32x32/apps/system-software-update.png + images/tango/32x32/apps/system-users.png + images/tango/32x32/apps/utilities-system-monitor.png + images/tango/32x32/apps/utilities-terminal.png + images/tango/32x32/categories/applications-accessories.png + images/tango/32x32/categories/applications-development.png + images/tango/32x32/categories/applications-games.png + images/tango/32x32/categories/applications-graphics.png + images/tango/32x32/categories/applications-internet.png + images/tango/32x32/categories/applications-multimedia.png + images/tango/32x32/categories/applications-office.png + images/tango/32x32/categories/applications-other.png + images/tango/32x32/categories/applications-system.png + images/tango/32x32/categories/preferences-desktop-peripherals.png + images/tango/32x32/categories/preferences-desktop.png + images/tango/32x32/categories/preferences-system.png + images/tango/32x32/devices/audio-card.png + images/tango/32x32/devices/audio-input-microphone.png + images/tango/32x32/devices/battery.png + images/tango/32x32/devices/camera-photo.png + images/tango/32x32/devices/camera-video.png + images/tango/32x32/devices/computer.png + images/tango/32x32/devices/drive-harddisk.png + images/tango/32x32/devices/drive-optical.png + images/tango/32x32/devices/drive-removable-media.png + images/tango/32x32/devices/input-gaming.png + images/tango/32x32/devices/input-keyboard.png + images/tango/32x32/devices/input-mouse.png + images/tango/32x32/devices/media-flash.png + images/tango/32x32/devices/media-floppy.png + images/tango/32x32/devices/media-optical.png + images/tango/32x32/devices/multimedia-player.png + images/tango/32x32/devices/network-wired.png + images/tango/32x32/devices/network-wireless.png + images/tango/32x32/devices/printer.png + images/tango/32x32/devices/video-display.png + images/tango/32x32/emblems/emblem-favorite.png + images/tango/32x32/emblems/emblem-important.png + images/tango/32x32/emblems/emblem-photos.png + images/tango/32x32/emblems/emblem-readonly.png + images/tango/32x32/emblems/emblem-symbolic-link.png + images/tango/32x32/emblems/emblem-system.png + images/tango/32x32/emblems/emblem-unreadable.png + images/tango/32x32/emotes/face-angel.png + images/tango/32x32/emotes/face-crying.png + images/tango/32x32/emotes/face-devilish.png + images/tango/32x32/emotes/face-glasses.png + images/tango/32x32/emotes/face-grin.png + images/tango/32x32/emotes/face-kiss.png + images/tango/32x32/emotes/face-monkey.png + images/tango/32x32/emotes/face-plain.png + images/tango/32x32/emotes/face-sad.png + images/tango/32x32/emotes/face-smile-big.png + images/tango/32x32/emotes/face-smile.png + images/tango/32x32/emotes/face-surprise.png + images/tango/32x32/emotes/face-wink.png + images/tango/32x32/mimetypes/application-certificate.png + images/tango/32x32/mimetypes/application-x-executable.png + images/tango/32x32/mimetypes/audio-x-generic.png + images/tango/32x32/mimetypes/font-x-generic.png + images/tango/32x32/mimetypes/image-x-generic.png + images/tango/32x32/mimetypes/package-x-generic.png + images/tango/32x32/mimetypes/text-html.png + images/tango/32x32/mimetypes/text-x-generic-template.png + images/tango/32x32/mimetypes/text-x-generic.png + images/tango/32x32/mimetypes/text-x-script.png + images/tango/32x32/mimetypes/video-x-generic.png + images/tango/32x32/mimetypes/x-office-address-book.png + images/tango/32x32/mimetypes/x-office-calendar.png + images/tango/32x32/mimetypes/x-office-document-template.png + images/tango/32x32/mimetypes/x-office-document.png + images/tango/32x32/mimetypes/x-office-drawing-template.png + images/tango/32x32/mimetypes/x-office-drawing.png + images/tango/32x32/mimetypes/x-office-presentation-template.png + images/tango/32x32/mimetypes/x-office-presentation.png + images/tango/32x32/mimetypes/x-office-spreadsheet-template.png + images/tango/32x32/mimetypes/x-office-spreadsheet.png + images/tango/32x32/places/folder-remote.png + images/tango/32x32/places/folder-saved-search.png + images/tango/32x32/places/folder.png + images/tango/32x32/places/network-server.png + images/tango/32x32/places/network-workgroup.png + images/tango/32x32/places/start-here.png + images/tango/32x32/places/user-desktop.png + images/tango/32x32/places/user-home.png + images/tango/32x32/places/user-trash.png + images/tango/32x32/status/audio-volume-high.png + images/tango/32x32/status/audio-volume-low.png + images/tango/32x32/status/audio-volume-medium.png + images/tango/32x32/status/audio-volume-muted.png + images/tango/32x32/status/battery-caution.png + images/tango/32x32/status/dialog-error.png + images/tango/32x32/status/dialog-information.png + images/tango/32x32/status/dialog-warning.png + images/tango/32x32/status/folder-drag-accept.png + images/tango/32x32/status/folder-open.png + images/tango/32x32/status/folder-visiting.png + images/tango/32x32/status/image-loading.png + images/tango/32x32/status/image-missing.png + images/tango/32x32/status/mail-attachment.png + images/tango/32x32/status/network-error.png + images/tango/32x32/status/network-idle.png + images/tango/32x32/status/network-offline.png + images/tango/32x32/status/network-receive.png + images/tango/32x32/status/network-transmit-receive.png + images/tango/32x32/status/network-transmit.png + images/tango/32x32/status/network-wireless-encrypted.png + images/tango/32x32/status/printer-error.png + images/tango/32x32/status/software-update-available.png + images/tango/32x32/status/software-update-urgent.png + images/tango/32x32/status/user-trash-full.png + images/tango/32x32/status/weather-clear-night.png + images/tango/32x32/status/weather-clear.png + images/tango/32x32/status/weather-few-clouds-night.png + images/tango/32x32/status/weather-few-clouds.png + images/tango/32x32/status/weather-overcast.png + images/tango/32x32/status/weather-severe-alert.png + images/tango/32x32/status/weather-showers-scattered.png + images/tango/32x32/status/weather-showers.png + images/tango/32x32/status/weather-snow.png + images/tango/32x32/status/weather-storm.png + images/tango/index.theme + + diff --git a/qdarkstyle/rc/Hmovetoolbar.png b/qdarkstyle/rc/Hmovetoolbar.png new file mode 100644 index 0000000..cead99e Binary files /dev/null and b/qdarkstyle/rc/Hmovetoolbar.png differ diff --git a/qdarkstyle/rc/Hsepartoolbar.png b/qdarkstyle/rc/Hsepartoolbar.png new file mode 100644 index 0000000..7f183c8 Binary files /dev/null and b/qdarkstyle/rc/Hsepartoolbar.png differ diff --git a/qdarkstyle/rc/Vmovetoolbar.png b/qdarkstyle/rc/Vmovetoolbar.png new file mode 100644 index 0000000..ac6a655 Binary files /dev/null and b/qdarkstyle/rc/Vmovetoolbar.png differ diff --git a/qdarkstyle/rc/Vsepartoolbar.png b/qdarkstyle/rc/Vsepartoolbar.png new file mode 100644 index 0000000..7bf62f1 Binary files /dev/null and b/qdarkstyle/rc/Vsepartoolbar.png differ diff --git a/qdarkstyle/rc/branch_closed-on.png b/qdarkstyle/rc/branch_closed-on.png new file mode 100644 index 0000000..d081e9b Binary files /dev/null and b/qdarkstyle/rc/branch_closed-on.png differ diff --git a/qdarkstyle/rc/branch_closed.png b/qdarkstyle/rc/branch_closed.png new file mode 100644 index 0000000..d652159 Binary files /dev/null and b/qdarkstyle/rc/branch_closed.png differ diff --git a/qdarkstyle/rc/branch_open-on.png b/qdarkstyle/rc/branch_open-on.png new file mode 100644 index 0000000..ec372b2 Binary files /dev/null and b/qdarkstyle/rc/branch_open-on.png differ diff --git a/qdarkstyle/rc/branch_open.png b/qdarkstyle/rc/branch_open.png new file mode 100644 index 0000000..66f8e1a Binary files /dev/null and b/qdarkstyle/rc/branch_open.png differ diff --git a/qdarkstyle/rc/checkbox_checked.png b/qdarkstyle/rc/checkbox_checked.png new file mode 100644 index 0000000..830cfee Binary files /dev/null and b/qdarkstyle/rc/checkbox_checked.png differ diff --git a/qdarkstyle/rc/checkbox_checked_disabled.png b/qdarkstyle/rc/checkbox_checked_disabled.png new file mode 100644 index 0000000..cb63cc2 Binary files /dev/null and b/qdarkstyle/rc/checkbox_checked_disabled.png differ diff --git a/qdarkstyle/rc/checkbox_checked_focus.png b/qdarkstyle/rc/checkbox_checked_focus.png new file mode 100644 index 0000000..671be27 Binary files /dev/null and b/qdarkstyle/rc/checkbox_checked_focus.png differ diff --git a/qdarkstyle/rc/checkbox_indeterminate.png b/qdarkstyle/rc/checkbox_indeterminate.png new file mode 100644 index 0000000..41024f7 Binary files /dev/null and b/qdarkstyle/rc/checkbox_indeterminate.png differ diff --git a/qdarkstyle/rc/checkbox_indeterminate_focus.png b/qdarkstyle/rc/checkbox_indeterminate_focus.png new file mode 100644 index 0000000..415f9b6 Binary files /dev/null and b/qdarkstyle/rc/checkbox_indeterminate_focus.png differ diff --git a/qdarkstyle/rc/checkbox_unchecked.png b/qdarkstyle/rc/checkbox_unchecked.png new file mode 100644 index 0000000..2159aca Binary files /dev/null and b/qdarkstyle/rc/checkbox_unchecked.png differ diff --git a/qdarkstyle/rc/checkbox_unchecked_disabled.png b/qdarkstyle/rc/checkbox_unchecked_disabled.png new file mode 100644 index 0000000..ade721e Binary files /dev/null and b/qdarkstyle/rc/checkbox_unchecked_disabled.png differ diff --git a/qdarkstyle/rc/checkbox_unchecked_focus.png b/qdarkstyle/rc/checkbox_unchecked_focus.png new file mode 100644 index 0000000..e4258cc Binary files /dev/null and b/qdarkstyle/rc/checkbox_unchecked_focus.png differ diff --git a/qdarkstyle/rc/close-hover.png b/qdarkstyle/rc/close-hover.png new file mode 100644 index 0000000..657943a Binary files /dev/null and b/qdarkstyle/rc/close-hover.png differ diff --git a/qdarkstyle/rc/close-pressed.png b/qdarkstyle/rc/close-pressed.png new file mode 100644 index 0000000..937d005 Binary files /dev/null and b/qdarkstyle/rc/close-pressed.png differ diff --git a/qdarkstyle/rc/close.png b/qdarkstyle/rc/close.png new file mode 100644 index 0000000..bc0f576 Binary files /dev/null and b/qdarkstyle/rc/close.png differ diff --git a/qdarkstyle/rc/down_arrow.png b/qdarkstyle/rc/down_arrow.png new file mode 100644 index 0000000..e271f7f Binary files /dev/null and b/qdarkstyle/rc/down_arrow.png differ diff --git a/qdarkstyle/rc/down_arrow_disabled.png b/qdarkstyle/rc/down_arrow_disabled.png new file mode 100644 index 0000000..5805d98 Binary files /dev/null and b/qdarkstyle/rc/down_arrow_disabled.png differ diff --git a/qdarkstyle/rc/left_arrow.png b/qdarkstyle/rc/left_arrow.png new file mode 100644 index 0000000..f808d2d Binary files /dev/null and b/qdarkstyle/rc/left_arrow.png differ diff --git a/qdarkstyle/rc/left_arrow_disabled.png b/qdarkstyle/rc/left_arrow_disabled.png new file mode 100644 index 0000000..f5b9af8 Binary files /dev/null and b/qdarkstyle/rc/left_arrow_disabled.png differ diff --git a/qdarkstyle/rc/radio_checked.png b/qdarkstyle/rc/radio_checked.png new file mode 100644 index 0000000..235e6b0 Binary files /dev/null and b/qdarkstyle/rc/radio_checked.png differ diff --git a/qdarkstyle/rc/radio_checked_disabled.png b/qdarkstyle/rc/radio_checked_disabled.png new file mode 100644 index 0000000..bf0051e Binary files /dev/null and b/qdarkstyle/rc/radio_checked_disabled.png differ diff --git a/qdarkstyle/rc/radio_checked_focus.png b/qdarkstyle/rc/radio_checked_focus.png new file mode 100644 index 0000000..700c6b5 Binary files /dev/null and b/qdarkstyle/rc/radio_checked_focus.png differ diff --git a/qdarkstyle/rc/radio_unchecked.png b/qdarkstyle/rc/radio_unchecked.png new file mode 100644 index 0000000..9a4def6 Binary files /dev/null and b/qdarkstyle/rc/radio_unchecked.png differ diff --git a/qdarkstyle/rc/radio_unchecked_disabled.png b/qdarkstyle/rc/radio_unchecked_disabled.png new file mode 100644 index 0000000..6ece890 Binary files /dev/null and b/qdarkstyle/rc/radio_unchecked_disabled.png differ diff --git a/qdarkstyle/rc/radio_unchecked_focus.png b/qdarkstyle/rc/radio_unchecked_focus.png new file mode 100644 index 0000000..564e022 Binary files /dev/null and b/qdarkstyle/rc/radio_unchecked_focus.png differ diff --git a/qdarkstyle/rc/right_arrow.png b/qdarkstyle/rc/right_arrow.png new file mode 100644 index 0000000..9b0a4e6 Binary files /dev/null and b/qdarkstyle/rc/right_arrow.png differ diff --git a/qdarkstyle/rc/right_arrow_disabled.png b/qdarkstyle/rc/right_arrow_disabled.png new file mode 100644 index 0000000..5c0bee4 Binary files /dev/null and b/qdarkstyle/rc/right_arrow_disabled.png differ diff --git a/qdarkstyle/rc/sizegrip.png b/qdarkstyle/rc/sizegrip.png new file mode 100644 index 0000000..350583a Binary files /dev/null and b/qdarkstyle/rc/sizegrip.png differ diff --git a/qdarkstyle/rc/stylesheet-branch-end.png b/qdarkstyle/rc/stylesheet-branch-end.png new file mode 100644 index 0000000..cb5d3b5 Binary files /dev/null and b/qdarkstyle/rc/stylesheet-branch-end.png differ diff --git a/qdarkstyle/rc/stylesheet-branch-more.png b/qdarkstyle/rc/stylesheet-branch-more.png new file mode 100644 index 0000000..6271140 Binary files /dev/null and b/qdarkstyle/rc/stylesheet-branch-more.png differ diff --git a/qdarkstyle/rc/stylesheet-vline.png b/qdarkstyle/rc/stylesheet-vline.png new file mode 100644 index 0000000..87536cc Binary files /dev/null and b/qdarkstyle/rc/stylesheet-vline.png differ diff --git a/qdarkstyle/rc/transparent.png b/qdarkstyle/rc/transparent.png new file mode 100644 index 0000000..483df25 Binary files /dev/null and b/qdarkstyle/rc/transparent.png differ diff --git a/qdarkstyle/rc/undock.png b/qdarkstyle/rc/undock.png new file mode 100644 index 0000000..88691d7 Binary files /dev/null and b/qdarkstyle/rc/undock.png differ diff --git a/qdarkstyle/rc/up_arrow.png b/qdarkstyle/rc/up_arrow.png new file mode 100644 index 0000000..abcc724 Binary files /dev/null and b/qdarkstyle/rc/up_arrow.png differ diff --git a/qdarkstyle/rc/up_arrow_disabled.png b/qdarkstyle/rc/up_arrow_disabled.png new file mode 100644 index 0000000..b9c8e3b Binary files /dev/null and b/qdarkstyle/rc/up_arrow_disabled.png differ diff --git a/qdarkstyle/style.qrc b/qdarkstyle/style.qrc new file mode 100644 index 0000000..ac14bc5 --- /dev/null +++ b/qdarkstyle/style.qrc @@ -0,0 +1,46 @@ + + + rc/up_arrow_disabled.png + rc/Hmovetoolbar.png + rc/stylesheet-branch-end.png + rc/branch_closed-on.png + rc/stylesheet-vline.png + rc/branch_closed.png + rc/branch_open-on.png + rc/transparent.png + rc/right_arrow_disabled.png + rc/sizegrip.png + rc/close.png + rc/close-hover.png + rc/close-pressed.png + rc/down_arrow.png + rc/Vmovetoolbar.png + rc/left_arrow.png + rc/stylesheet-branch-more.png + rc/up_arrow.png + rc/right_arrow.png + rc/left_arrow_disabled.png + rc/Hsepartoolbar.png + rc/branch_open.png + rc/Vsepartoolbar.png + rc/down_arrow_disabled.png + rc/undock.png + rc/checkbox_checked_disabled.png + rc/checkbox_checked_focus.png + rc/checkbox_checked.png + rc/checkbox_indeterminate.png + rc/checkbox_indeterminate_focus.png + rc/checkbox_unchecked_disabled.png + rc/checkbox_unchecked_focus.png + rc/checkbox_unchecked.png + rc/radio_checked_disabled.png + rc/radio_checked_focus.png + rc/radio_checked.png + rc/radio_unchecked_disabled.png + rc/radio_unchecked_focus.png + rc/radio_unchecked.png + + + style.qss + + diff --git a/qdarkstyle/style.qss b/qdarkstyle/style.qss new file mode 100644 index 0000000..c2db066 --- /dev/null +++ b/qdarkstyle/style.qss @@ -0,0 +1,1894 @@ +/* QDarkStyleSheet -------------------------------------------------------- + +This is the main style sheet, the palette has nine main colors. +It is based on three selecting colors, three greyish (background) colors +plus three whitish (foreground) colors. Each set of widgets of the same +type have a header like this: + + ------------------ + GroupName -------- + ------------------ + +And each widget is separated with a header like this: + + QWidgetName ------ + +This makes more easy to find and change some css field. The basic +configuration is described bellow. + + SELECTION ------------ + + sel_light #179AE0 #148CD2 (selection/hover/active) + sel_normal #3375A3 #1464A0 (selected) + sel_dark #18465D #14506E (selected disabled) + + FOREGROUND ----------- + + for_light #EFF0F1 #F0F0F0 (texts/labels) + for_dark #505F69 #787878 (disabled texts) + + BACKGROUND ----------- + + bac_light #4D545B #505F69 (unpressed) + bac_normal #31363B #32414B (border, disabled, pressed, checked, toolbars, menus) + bac_dark #232629 #19232D (background) + +If a stranger configuration is required because of a bugfix or anything +else, keep the comment on that line to nobodys changed it, including the +issue number. +--------------------------------------------------------------------------- */ + + + +/* QWidget ---------------------------------------------------------------- */ + +QWidget { + background-color: #19232D; + border: 0px solid #32414B; + padding: 0px; + color: #F0F0F0; + selection-background-color: #1464A0; + selection-color: #F0F0F0; +} + +QWidget:disabled { + background-color: #19232D; + color: #787878; + selection-background-color: #14506E; + selection-color: #787878; +} + +QWidget:item:selected { + background-color: #1464A0; +} + +QWidget:item:hover { + background-color: #148CD2; + color: #32414B; +} + +/* QMainWindow ------------------------------------------------------------ */ +/* This adjusts the splitter in the dock widget, not qsplitter */ + + +QMainWindow::separator { + background-color: #32414B; + border: 0 solid #19232D; + spacing: 0; + padding: 2px; +} + +QMainWindow::separator:hover { + background-color: #505F69; + border: 0px solid #148CD2; +} + +QMainWindow::separator:horizontal { + width: 5px; + margin-top: 2px; + margin-bottom: 2px; + image: url(:/qss_icons/rc/Vsepartoolbar.png); +} + +QMainWindow::separator:vertical { + height: 5px; + margin-left: 2px; + margin-right: 2px; + image: url(:/qss_icons/rc/Hsepartoolbar.png); +} + +/* QToolTip --------------------------------------------------------------- */ + +QToolTip { + background-color: #148CD2; + border: 1px solid #19232D; + color: #19232D; + padding: 0; /*remove padding, for fix combo box tooltip*/ + opacity: 230; /*reducing transparency to read better*/ +} + +/* QStatusBar ------------------------------------------------------------- */ + +QStatusBar { + border: 1px solid #32414B; +} + +QStatusBar QToolTip { + background-color: #148CD2; + border: 1px solid #19232D; + color: #19232D; + padding: 0; /*remove padding, for fix combo box tooltip*/ + opacity: 230; /*reducing transparency to read better*/ +} + +/* QCheckBox -------------------------------------------------------------- */ + +QCheckBox { + background-color: #19232D; + color: #F0F0F0; + spacing: 4px; + outline: none; + padding-top: 4px; + padding-bottom: 4px; +} + +QCheckBox:focus { + border: none; +} + +QCheckBox QWidget:disabled { + background-color: #19232D; + color: #787878; +} + +QCheckBox::indicator { + margin-left: 4px; + width: 16px; + height: 16px; +} + +QCheckBox::indicator:unchecked { + image: url(:/qss_icons/rc/checkbox_unchecked.png); +} + +QCheckBox::indicator:unchecked:hover, +QCheckBox::indicator:unchecked:focus, +QCheckBox::indicator:unchecked:pressed { + border: none; + image: url(:/qss_icons/rc/checkbox_unchecked_focus.png); +} + +QCheckBox::indicator:unchecked:disabled { + image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png); +} + +QCheckBox::indicator:checked { + image: url(:/qss_icons/rc/checkbox_checked.png); +} + +QCheckBox::indicator:checked:hover, +QCheckBox::indicator:checked:focus, +QCheckBox::indicator:checked:pressed { + border: none; + image: url(:/qss_icons/rc/checkbox_checked_focus.png); +} + +QCheckBox::indicator:checked:disabled{ + image: url(:/qss_icons/rc/checkbox_checked_disabled.png); +} + +QCheckBox::indicator:indeterminate { + image: url(:/qss_icons/rc/checkbox_indeterminate.png); +} + +QCheckBox::indicator:indeterminate:disabled { + image: url(:/qss_icons/rc/checkbox_indeterminate_disabled.png); +} + +QCheckBox::indicator:indeterminate:focus, +QCheckBox::indicator:indeterminate:hover, +QCheckBox::indicator:indeterminate:pressed { + image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png); +} + +/* QGroupBox -------------------------------------------------------------- */ + +QGroupBox { + font-weight: bold; + border: 1px solid #32414B; + border-radius: 4px; + padding: 4px; + margin-top: 16px; +} + + + +QGroupBox::title { + subcontrol-origin: margin; + subcontrol-position: top left; + left: 3px; + padding-left: 3px; + padding-right: 5px; + padding-top: 8px; + padding-bottom: 16px; +} + +QGroupBox::indicator { + margin-left: 4px; + width: 16px; + height: 16px; +} + +QGroupBox::indicator { + margin-left: 2px; +} + +QGroupBox::indicator:unchecked:hover, +QGroupBox::indicator:unchecked:focus, +QGroupBox::indicator:unchecked:pressed { + border: none; + image: url(:/qss_icons/rc/checkbox_unchecked_focus.png); +} + +QGroupBox::indicator:checked:hover, +QGroupBox::indicator:checked:focus, +QGroupBox::indicator:checked:pressed { + border: none; + image: url(:/qss_icons/rc/checkbox_checked_focus.png); +} + +QGroupBox::indicator:checked:disabled { + image: url(:/qss_icons/rc/checkbox_checked_disabled.png); +} + +QGroupBox::indicator:unchecked:disabled { + image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png); +} + +/* QRadioButton ----------------------------------------------------------- */ + +QRadioButton { + background-color: #19232D; + color: #F0F0F0; + spacing: 0; + padding: 0; + border: none; + outline: none; +} + +QRadioButton:focus { + border: none; +} + +QRadioButton:disabled { + background-color: #19232D; + color: #787878; + border: none; + outline: none; +} + +QRadioButton QWidget { + background-color: #19232D; + color: #F0F0F0; + spacing: 0px; + padding: 0px; + outline: none; + border: none; +} + +QRadioButton::indicator { + border: none; + outline: none; + margin-bottom: 2px; + width: 25px; + height: 25px; +} + +QRadioButton::indicator:unchecked { + image: url(:/qss_icons/rc/radio_unchecked.png); +} + +QRadioButton::indicator:unchecked:hover, +QRadioButton::indicator:unchecked:focus, +QRadioButton::indicator:unchecked:pressed { + border: none; + outline: none; + image: url(:/qss_icons/rc/radio_unchecked_focus.png); +} + +QRadioButton::indicator:checked { + border: none; + outline: none; + image: url(:/qss_icons/rc/radio_checked.png); +} + +QRadioButton::indicator:checked:hover, +QRadioButton::indicator:checked:focus, +QRadioButton::indicator:checked:pressed { + border: none; + outline: none; + image: url(:/qss_icons/rc/radio_checked_focus.png); +} + +QRadioButton::indicator:checked:disabled { + outline: none; + image: url(:/qss_icons/rc/radio_checked_disabled.png); +} + +QRadioButton::indicator:unchecked:disabled { + image: url(:/qss_icons/rc/radio_unchecked_disabled.png); +} + +/* QMenuBar --------------------------------------------------------------- */ + +QMenuBar { + background-color: #32414B; + padding: 2px; + border: 1px solid #19232D; + color: #F0F0F0; +} + +QMenuBar:focus { + border: 1px solid #148CD2; +} + +QMenuBar::item { + background: transparent; + padding: 4px; +} + +QMenuBar::item:selected { + padding: 4px; + background: transparent; + border: 0px solid #32414B; +} + +QMenuBar::item:pressed { + padding: 4px; + border: 0px solid #32414B; + background-color: #148CD2; + color: #F0F0F0; + margin-bottom: 0px; + padding-bottom: 0px; +} + +/* QMenu ------------------------------------------------------------------ */ + +QMenu { + border: 0px solid #32414B; + color: #F0F0F0; + margin: 0px; +} + +QMenu::separator { + height: 2px; + background-color: #505F69; + color: #F0F0F0; + padding-left: 4px; + margin-left: 2px; + margin-right: 2px; +} + +QMenu::icon { + margin: 0px; + padding-left:4px; +} + +QMenu::item { + padding: 4px 24px 4px 24px; + border: 1px transparent #32414B; /* reserve space for selection border */ +} + +QMenu::item:selected { + color: #F0F0F0; +} + + + +QMenu::indicator { + width: 12px; + height: 12px; + padding-left:6px; +} + +/* non-exclusive indicator = check box style indicator (see QActionGroup::setExclusive) */ + +QMenu::indicator:non-exclusive:unchecked { + image: url(:/qss_icons/rc/checkbox_unchecked.png); +} + +QMenu::indicator:non-exclusive:unchecked:selected { + image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png); +} + +QMenu::indicator:non-exclusive:checked { + image: url(:/qss_icons/rc/checkbox_checked.png); +} + +QMenu::indicator:non-exclusive:checked:selected { + image: url(:/qss_icons/rc/checkbox_checked_disabled.png); +} + +/* exclusive indicator = radio button style indicator (see QActionGroup::setExclusive) */ + +QMenu::indicator:exclusive:unchecked { + image: url(:/qss_icons/rc/radio_unchecked.png); +} + +QMenu::indicator:exclusive:unchecked:selected { + image: url(:/qss_icons/rc/radio_unchecked_disabled.png); +} + +QMenu::indicator:exclusive:checked { + image: url(:/qss_icons/rc/radio_checked.png); +} + +QMenu::indicator:exclusive:checked:selected { + image: url(:/qss_icons/rc/radio_checked_disabled.png); +} + +QMenu::right-arrow { + margin: 5px; + image: url(:/qss_icons/rc/right_arrow.png) +} + +/* QAbstractItemView ------------------------------------------------------ */ + +QAbstractItemView { + alternate-background-color: #19232D; + color: #F0F0F0; + border: 1px solid #32414B; + border-radius: 4px; +} + +QAbstractItemView QLineEdit { + padding: 2px; +} + +/* QAbstractScrollArea ---------------------------------------------------- */ + +QAbstractScrollArea { + background-color: #19232D; + border: 1px solid #32414B; + border-radius: 4px; + padding: 4px; + color: #F0F0F0; +} + +QAbstractScrollArea:disabled { + color: #787878; +} + +/* QScrollArea ------------------------------------------------------------ */ + +QScrollArea QWidget QWidget:disabled { + background-color: #19232D; +} + +/* QScrollBar ------------------------------------------------------------- */ + +QScrollBar:horizontal { + height: 16px; + margin: 2px 16px 2px 16px; + border: 1px solid #32414B; + border-radius: 4px; + background-color: #19232D; +} + +QScrollBar::handle:horizontal { + background-color: #787878; + border: 1px solid #32414B; + border-radius: 4px; + min-width: 8px; + +} + +QScrollBar::handle:horizontal:hover { + background-color: #148CD2; + border: 1px solid #148CD2; + border-radius: 4px; + min-width: 8px; +} + +QScrollBar::add-line:horizontal { + margin: 0px 0px 0px 0px; + border-image: url(:/qss_icons/rc/right_arrow_disabled.png); + width: 10px; + height: 10px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal { + margin: 0px 3px 0px 3px; + border-image: url(:/qss_icons/rc/left_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::add-line:horizontal:hover, +QScrollBar::add-line:horizontal:on { + border-image: url(:/qss_icons/rc/right_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal:hover, +QScrollBar::sub-line:horizontal:on { + border-image: url(:/qss_icons/rc/left_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::up-arrow:horizontal, +QScrollBar::down-arrow:horizontal { + background: none; +} + +QScrollBar::add-page:horizontal, +QScrollBar::sub-page:horizontal { + background: none; +} + +QScrollBar:vertical { + background-color: #19232D; + width: 16px; + margin: 16px 2px 16px 2px; + border: 1px solid #32414B; + border-radius: 4px; +} + +QScrollBar::handle:vertical { + background-color: #787878; + border: 1px solid #32414B; + min-height: 8px; + border-radius: 4px; +} + +QScrollBar::handle:vertical:hover { + background-color: #148CD2; + border: 1px solid #148CD2; + border-radius: 4px; + min-height: 8px; + +} + +QScrollBar::sub-line:vertical { + margin: 3px 0px 3px 0px; + border-image: url(:/qss_icons/rc/up_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical { + margin: 3px 0px 3px 0px; + border-image: url(:/qss_icons/rc/down_arrow_disabled.png); + height: 10px; + width: 10px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:vertical:hover, +QScrollBar::sub-line:vertical:on { + border-image: url(:/qss_icons/rc/up_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical:hover, +QScrollBar::add-line:vertical:on { + border-image: url(:/qss_icons/rc/down_arrow.png); + height: 10px; + width: 10px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::up-arrow:vertical, +QScrollBar::down-arrow:vertical { + background: none; +} + +QScrollBar::add-page:vertical, +QScrollBar::sub-page:vertical { + background: none; +} + +/* QTextEdit--------------------------------------------------------------- */ + +QTextEdit { + background-color: #19232D; + color: #F0F0F0; + border: 1px solid #32414B; +} + +QTextEdit:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QTextEdit:selected { + background: #1464A0; + color: #32414B; +} + +/* QPlainTextEdit --------------------------------------------------------- */ + +QPlainTextEdit { + background-color: #19232D; + color: #F0F0F0; + border-radius: 4px; + border: 1px solid #32414B; +} + +QPlainTextEdit:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QPlainTextEdit:selected { + background: #1464A0; + color: #32414B; +} + +/* QSizeGrip --------------------------------------------------------------- */ + +QSizeGrip { + image: url(:/qss_icons/rc/sizegrip.png); + width: 12px; + height: 12px; +} + +/* QStackedWidget --------------------------------------------------------- */ + +QStackedWidget { + padding: 4px; + border: 1px solid #32414B; + border: 1px solid #19232D; +} + +/* QToolBar --------------------------------------------------------------- */ + +QToolBar { + background-color: #32414B; + border-bottom: 1px solid #19232D; + padding: 2px; + font-weight: bold; +} + +QToolBar QToolButton{ + background-color: #32414B; +} + +QToolBar::handle:horizontal { + width: 6px; + image: url(:/qss_icons/rc/Hmovetoolbar.png); +} + +QToolBar::handle:vertical { + height: 6px; + image: url(:/qss_icons/rc/Vmovetoolbar.png); +} + +QToolBar::separator:horizontal { + width: 3px; + image: url(:/qss_icons/rc/Hsepartoolbar.png); +} + +QToolBar::separator:vertical { + height: 3px; + image: url(:/qss_icons/rc/Vsepartoolbar.png); +} + +QToolButton#qt_toolbar_ext_button { + background: #32414B; + border: 0px; + color: #F0F0F0; + image: url(:/qss_icons/rc/right_arrow.png); +} + +/* QAbstractSpinBox ------------------------------------------------------- */ + +QAbstractSpinBox { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + padding-top: 2px; /* This fix 103, 111*/ + padding-bottom: 2px; /* This fix 103, 111*/ + padding-left: 4px; + padding-right: 4px; + border-radius: 4px; + /* min-width: 5px; removed to fix 109 */ +} + +QAbstractSpinBox:up-button { + background-color: transparent #19232D; + subcontrol-origin: border; + subcontrol-position: top right; + border-left: 1px solid #32414B; + margin: 1px; +} + +QAbstractSpinBox::up-arrow, +QAbstractSpinBox::up-arrow:disabled, +QAbstractSpinBox::up-arrow:off { + image: url(:/qss_icons/rc/up_arrow_disabled.png); + width: 9px; + height: 9px; +} + +QAbstractSpinBox::up-arrow:hover { + image: url(:/qss_icons/rc/up_arrow.png); +} + +QAbstractSpinBox:down-button { + background-color: transparent #19232D; + subcontrol-origin: border; + subcontrol-position: bottom right; + border-left: 1px solid #32414B; + margin: 1px; +} + +QAbstractSpinBox::down-arrow, +QAbstractSpinBox::down-arrow:disabled, +QAbstractSpinBox::down-arrow:off { + image: url(:/qss_icons/rc/down_arrow_disabled.png); + width: 9px; + height: 9px; +} + +QAbstractSpinBox::down-arrow:hover { + image: url(:/qss_icons/rc/down_arrow.png); +} + +QAbstractSpinBox:hover{ + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QAbstractSpinBox:selected { + background: #1464A0; + color: #32414B; +} + +/* ------------------------------------------------------------------------ */ +/* DISPLAYS --------------------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ + +/* QLabel ----------------------------------------------------------------- */ + +QLabel { + background-color: #19232D; + border: 0px solid #32414B; + padding: 2px; + margin: 0px; + color: #F0F0F0 +} + +QLabel::disabled { + background-color: #19232D; + border: 0px solid #32414B; + color: #787878; +} + +/* QTextBrowser ----------------------------------------------------------- */ + +QTextBrowser { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; +} + +QTextBrowser:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; +} + +QTextBrowser:hover, +QTextBrowser:!hover, +QTextBrowser::selected, +QTextBrowser::pressed { + border: 1px solid #32414B; +} + +/* QGraphicsView --------------------------------------------------------- */ + +QGraphicsView { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; +} + +QGraphicsView:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; +} + +QGraphicsView:hover, +QGraphicsView:!hover, +QGraphicsView::selected, +QGraphicsView::pressed { + border: 1px solid #32414B; +} + +/* QCalendarWidget -------------------------------------------------------- */ + +QCalendarWidget { + border: 1px solid #32414B; + border-radius: 4px; +} + +QCalendarWidget:disabled { + background-color: #19232D; + color: #787878; +} + +/* QLCDNumber ------------------------------------------------------------- */ + +QLCDNumber { + background-color: #19232D; + color: #F0F0F0; +} + +QLCDNumber:disabled { + background-color: #19232D; + color: #787878; +} + +/* QProgressBar ----------------------------------------------------------- */ + +QProgressBar { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + text-align: center; +} + +QProgressBar:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + text-align: center; +} + +QProgressBar::chunk { + background-color: #1464A0; + color: #19232D; + border-radius: 4px; +} + +QProgressBar::chunk:disabled { + background-color: #14506E; + color: #787878; + border-radius: 4px; +} + + +/* ------------------------------------------------------------------------ */ +/* BUTTONS ---------------------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ + +/* QPushButton ------------------------------------------------------------ */ + +QPushButton { + background-color: #505F69 ; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + padding: 3px; + outline: none; +} + +QPushButton:disabled { + background-color: #32414B; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + padding: 3px; +} + + +QPushButton:checked { + background-color: #32414B; + border: 1px solid #32414B; + border-radius: 4px; + padding: 3px; + outline: none; +} + +QPushButton:checked:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + padding: 3px; + outline: none; +} + +QPushButton::menu-indicator { + subcontrol-origin: padding; + subcontrol-position: bottom right; + bottom: 4px; +} + +QPushButton:pressed { + background-color: #19232D; + border: 1px solid #19232D; +} + +QPushButton:hover, +QPushButton:checked:hover{ + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QPushButton:selected, +QPushButton:checked:selected{ + background: #1464A0; + color: #32414B; +} + +/* QToolButton ------------------------------------------------------------ */ + +QToolButton { + background-color: transparent; + border: 1px solid #32414B; + border-radius: 4px; + margin: 0px; + padding: 2px; +} + +QToolButton:checked { + background-color: #19232D; + border: 1px solid #19232D; +} + +QToolButton:disabled { + border: 1px solid #32414B; +} + +QToolButton:hover, +QToolButton:checked:hover{ + border: 1px solid #148CD2; +} + +/* the subcontrols below are used only in the MenuButtonPopup mode */ + +QToolButton[popupMode="1"] { + padding: 2px; + padding-right: 12px; /* only for MenuButtonPopup */ + border: 1px solid #32414B; /* make way for the popup button */ + border-radius: 4px; +} + +/* The subcontrol below is used only in the InstantPopup or DelayedPopup mode */ + +QToolButton[popupMode="2"] { + padding: 2px; + padding-right: 12px; /* only for InstantPopup */ + border: 1px solid #32414B; /* make way for the popup button */ +} + +QToolButton::menu-button { + padding: 2px; + border-radius: 4px; + border: 1px solid #32414B; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + /* 16px width + 4px for border = 20px allocated above */ + width: 16px; + outline: none; +} + +QToolButton::menu-button:hover, +QToolButton::menu-button:checked:hover { + border: 1px solid #148CD2; +} + +QToolButton::menu-indicator { + image: url(:/qss_icons/rc/down_arrow.png); + top: -8px; /* shift it a bit */ + left: -4px; /* shift it a bit */ +} + +QToolButton::menu-arrow { + image: url(:/qss_icons/rc/down_arrow.png); +} + +QToolButton::menu-arrow:open { + border: 1px solid #32414B; +} + +/* QCommandLinkButton ----------------------------------------------------- */ + +QCommandLinkButton { + background-color: transparent; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + padding: 0px; + margin: 0px; +} + +QCommandLinkButton:disabled { + background-color: transparent; + color: #787878; +} + +/* ------------------------------------------------------------------------ */ +/* INPUTS - NO FIELDS ----------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ + +/* QCombobox -------------------------------------------------------------- */ + +QComboBox { + border: 1px solid #32414B; + border-radius: 4px; + selection-background-color: #1464A0; + padding-top: 2px; /* This fix #103, #111*/ + padding-bottom: 2px; /* This fix #103, #111*/ + padding-left: 4px; + padding-right: 4px; + /* min-width: 75px; removed to fix 109 */ +} + +QComboBox:disabled { + background-color: #19232D; + color: #787878; +} + +QComboBox:hover{ + border: 1px solid #148CD2; +} + +QComboBox:on { + selection-background-color: #19232D; +} + +QComboBox QAbstractItemView { + background-color: #19232D; + border-radius: 4px; + border: 1px solid #32414B; + selection-color: #148CD2; + selection-background-color: #32414B; +} + +QComboBox::drop-down { + subcontrol-origin: padding; + subcontrol-position: top right; + width: 20px; + border-left-width: 0px; + border-left-color: #32414B; + border-left-style: solid; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +QComboBox::down-arrow { + image: url(:/qss_icons/rc/down_arrow_disabled.png); +} + +QComboBox::down-arrow:on, +QComboBox::down-arrow:hover, +QComboBox::down-arrow:focus { + image: url(:/qss_icons/rc/down_arrow.png); +} + +/* QSlider ---------------------------------------------------------------- */ + +QSlider:disabled { + background: #19232D; +} + +QSlider:focus { + border: none; +} + +QSlider::groove:horizontal { + background: #32414B; + border: 1px solid #32414B; + height: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::sub-page:horizontal { + background: #1464A0; + border: 1px solid #32414B; + height: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::sub-page:horizontal:disabled { + background: #14506E; +} + +QSlider::handle:horizontal { + background: #787878; + border: 1px solid #32414B; + width: 8px; + height: 8px; + margin: -8px 0; + border-radius: 4px; +} + +QSlider::handle:horizontal:hover { + background: #148CD2; + border: 1px solid #148CD2; +} + +QSlider::groove:vertical { + background: #32414B; + border: 1px solid #32414B; + width: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::sub-page:vertical { + background: #1464A0; + border: 1px solid #32414B; + width: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::sub-page:vertical:disabled { + background: #14506E; +} + +QSlider::handle:vertical { + background: #787878; + border: 1px solid #32414B; + width: 8px; + height: 8px; + margin: 0 -8px; + border-radius: 4px; +} + +QSlider::handle:vertical:hover { + background: #148CD2; + border: 1px solid #148CD2; +} + +/* QLine ------------------------------------------------------------------ */ + +QLineEdit { + background-color: #19232D; + padding-top: 2px; /* This QLineEdit fix 103, 111 */ + padding-bottom: 2px; /* This QLineEdit fix 103, 111 */ + padding-left: 4px; + padding-right: 4px; + border-style: solid; + border: 1px solid #32414B; + border-radius: 4px; + color: #F0F0F0; +} + +QLineEdit:disabled { + background-color: #19232D; + color: #787878; +} + +QLineEdit:hover{ + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QLineEdit:selected{ + background: #1464A0; + color: #32414B; +} + +/* QTabWiget -------------------------------------------------------------- */ + +QTabWidget { + padding: 2px; + selection-background-color: #32414B; +} + +QTabWidget QFrame{ + border: 0; +} + +QTabWidget::pane { + border: 1px solid #32414B; + border-radius: 4px; + padding: 2px; + margin: 0px; +} + +QTabWidget::pane:selected { + background-color: #32414B; + border: 1px solid #1464A0; +} + +/* QTabBar ---------------------------------------------------------------- */ + +QTabBar { + qproperty-drawBase: 0; + border-radius: 4px; + margin: 0px; + padding: 2px; + border: 0; + + /* left: 5px; move to the right by 5px - removed for fix */ + } + +QTabBar::close-button { + border: 0; + margin: 2px; + padding: 0; + image: url(:/qss_icons/rc/close.png); +} + +QTabBar::close-button:hover { + image: url(:/qss_icons/rc/close-hover.png); +} + +QTabBar::close-button:pressed { + image: url(:/qss_icons/rc/close-pressed.png); +} + +/* QTabBar::tab - selected ----------------------------------------------- */ + +QTabBar::tab:top:selected:disabled { + border-bottom: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:bottom:selected:disabled { + border-top: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:left:selected:disabled { + border-left: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:right:selected:disabled { + border-right: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +/* QTabBar::tab - !selected and disabled ---------------------------------- */ + +QTabBar::tab:top:!selected:disabled { + border-bottom: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:bottom:!selected:disabled { + border-top: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:left:!selected:disabled { + border-right: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:right:!selected:disabled { + border-left: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +/* QTabBar::tab - selected ----------------------------------------------- */ + +QTabBar::tab:top:!selected { + border-bottom: 2px solid #19232D; + margin-top: 2px; +} + +QTabBar::tab:bottom:!selected { + border-top: 2px solid #19232D; + margin-bottom: 3px; +} + +QTabBar::tab:left:!selected { + border-left: 2px solid #19232D; + margin-right: 2px; +} + +QTabBar::tab:right:!selected { + border-right: 2px solid #19232D; + margin-left: 2px; +} + + +QTabBar::tab:top { + background-color: #32414B; + color: #F0F0F0; + margin-left: 2px; + padding-left: 4px; + padding-right: 4px; + padding-top: 2px; + padding-bottom: 2px; + min-width: 5px; + border-bottom: 3px solid #32414B; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +QTabBar::tab:top:selected { + background-color: #505F69; + color: #F0F0F0; + border-bottom: 3px solid #1464A0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +QTabBar::tab:top:!selected:hover { + border: 1px solid #148CD2; + border-bottom: 3px solid #148CD2; +} + +QTabBar::tab:bottom { + color: #F0F0F0; + border-top: 3px solid #32414B; + background-color: #32414B; + margin-left: 2px; + padding-left: 4px; + padding-right: 4px; + padding-top: 2px; + padding-bottom: 2px; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + min-width: 5px; +} + +QTabBar::tab:bottom:selected { + color: #F0F0F0; + background-color: #505F69; + border-top: 3px solid #1464A0; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} + +QTabBar::tab:bottom:!selected:hover { + border: 1px solid #148CD2; + border-top: 3px solid #148CD2; +} + +QTabBar::tab:left { + color: #F0F0F0; + background-color: #32414B; + margin-top: 2px; + padding-left: 2px; + padding-right: 2px; + padding-top: 4px; + padding-bottom: 4px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + min-height: 5px; +} + +QTabBar::tab:left:selected { + color: #F0F0F0; + background-color: #505F69; + border-left: 3px solid #1464A0; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +QTabBar::tab:left:!selected:hover { + border: 1px solid #148CD2; + border-left: 3px solid #148CD2; +} + +QTabBar::tab:right { + color: #F0F0F0; + background-color: #32414B; + margin-top: 2px; + padding-left: 2px; + padding-right: 2px; + padding-top: 4px; + padding-bottom: 4px; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + min-height: 5px; +} + +QTabBar::tab:right:selected { + color: #F0F0F0; + background-color: #505F69; + border-right: 3px solid #1464A0; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} + +QTabBar::tab:right:!selected:hover { + border: 1px solid #148CD2; + border-right: 3px solid #148CD2; +} + +QTabBar QToolButton::right-arrow:enabled { + image: url(:/qss_icons/rc/right_arrow.png); +} + +QTabBar QToolButton::left-arrow:enabled { + image: url(:/qss_icons/rc/left_arrow.png); +} + +QTabBar QToolButton::right-arrow:disabled { + image: url(:/qss_icons/rc/right_arrow_disabled.png); +} + +QTabBar QToolButton::left-arrow:disabled { + image: url(:/qss_icons/rc/left_arrow_disabled.png); +} + + +/* Some examples from internet to check + +QTabBar::tabButton() and QTabBar::tabIcon() +QTabBar::tear {width: 0px; border: none;} +QTabBar::tear {image: url(tear_indicator.png);} +QTabBar::scroller{width:85pix;} +QTabBar QToolbutton{background-color:"light blue";} + +But that left the buttons transparant. +Looked confusing as the tab buttons migrated behind the scroller buttons. +So we had to color the back ground of the scroller buttons +*/ + +/* QDockWiget ------------------------------------------------------------- */ + +QDockWidget { + outline: 1px solid #32414B; + background-color: #19232D; + border: 1px solid #32414B; + border-radius: 4px; + titlebar-close-icon: url(:/qss_icons/rc/close.png); + titlebar-normal-icon: url(:/qss_icons/rc/undock.png); +} + +QDockWidget::title { + padding: 6px; /* better size for title bar */ + border: none; + background-color: #32414B; +} + +QDockWidget::close-button { + background-color: #32414B; + border-radius: 4px; + border: none; +} + +QDockWidget::close-button:hover { + border: 1px solid #32414B; +} + +QDockWidget::close-button:pressed { + border: 1px solid #32414B; +} + +QDockWidget::float-button { + background-color: #32414B; + border-radius: 4px; + border: none; +} + +QDockWidget::float-button:hover { + border: 1px solid #32414B; +} + +QDockWidget::float-button:pressed { + border: 1px solid #32414B; +} + + +/* QTreeView QTableView QListView ----------------------------------------- */ + +QTreeView:branch:selected, +QTreeView:branch:hover { + background: url(:/qss_icons/rc/transparent.png); +} + +QTreeView::branch:has-siblings:!adjoins-item { + border-image: url(:/qss_icons/rc/transparent.png); +} + +QTreeView::branch:has-siblings:adjoins-item { + border-image: url(:/qss_icons/rc/transparent.png); +} + +QTreeView::branch:!has-children:!has-siblings:adjoins-item { + border-image: url(:/qss_icons/rc/transparent.png); +} + +QTreeView::branch:has-children:!has-siblings:closed, +QTreeView::branch:closed:has-children:has-siblings { + image: url(:/qss_icons/rc/branch_closed.png); +} + +QTreeView::branch:open:has-children:!has-siblings, +QTreeView::branch:open:has-children:has-siblings { + image: url(:/qss_icons/rc/branch_open.png); +} + +QTreeView::branch:has-children:!has-siblings:closed:hover, +QTreeView::branch:closed:has-children:has-siblings:hover { + image: url(:/qss_icons/rc/branch_closed-on.png); +} + +QTreeView::branch:open:has-children:!has-siblings:hover, +QTreeView::branch:open:has-children:has-siblings:hover { + image: url(:/qss_icons/rc/branch_open-on.png); +} + +QListView::item:!selected:hover, +QTreeView::item:!selected:hover, +QTableView::item:!selected:hover, +QColumnView::item:!selected:hover { + outline: 0; + color: #148CD2; + background-color: #32414B; +} + +QListView::item:selected:hover, +QTreeView::item:selected:hover, +QTableView::item:selected:hover, +QColumnView::item:selected:hover { + background: #1464A0; + color: #19232D; +} + +QTreeView::indicator:checked, +QListView::indicator:checked { + image: url(:/qss_icons/rc/checkbox_checked.png); +} + +QTreeView::indicator:unchecked, +QListView::indicator:unchecked { + image: url(:/qss_icons/rc/checkbox_unchecked.png); +} + +QTreeView::indicator:checked:hover, +QTreeView::indicator:checked:focus, +QTreeView::indicator:checked:pressed, +QListView::indicator:checked:hover, +QListView::indicator:checked:focus, +QListView::indicator:checked:pressed { + image: url(:/qss_icons/rc/checkbox_checked_focus.png); +} + +QTreeView::indicator:unchecked:hover, +QTreeView::indicator:unchecked:focus, +QTreeView::indicator:unchecked:pressed, +QListView::indicator:unchecked:hover, +QListView::indicator:unchecked:focus, +QListView::indicator:unchecked:pressed { + image: url(:/qss_icons/rc/checkbox_unchecked_focus.png); +} + +QTreeView::indicator:indeterminate:hover, +QTreeView::indicator:indeterminate:focus, +QTreeView::indicator:indeterminate:pressed, +QListView::indicator:indeterminate:hover, +QListView::indicator:indeterminate:focus, +QListView::indicator:indeterminate:pressed { + image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png); +} + +QTreeView::indicator:indeterminate, +QListView::indicator:indeterminate { + image: url(:/qss_icons/rc/checkbox_indeterminate.png); +} + +QListView, +QTreeView, +QTableView, +QColumnView { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + gridline-color: #32414B; + border-radius: 4px; +} + +QListView:disabled, +QTreeView:disabled, +QTableView:disabled, +QColumnView:disabled { + background-color: #19232D; + color: #787878; +} + +QListView:selected, +QTreeView:selected, +QTableView:selected, +QColumnView:selected { + background: #1464A0; + color: #32414B; +} + +QListView:hover, +QTreeView::hover, +QTableView::hover, +QColumnView::hover { + background-color: #19232D; + border: 1px solid #148CD2; +} + +QListView::item:pressed, +QTreeView::item:pressed, +QTableView::item:pressed, +QColumnView::item:pressed { + background-color: #1464A0; +} + +QListView::item:selected:active, +QTreeView::item:selected:active, +QTableView::item:selected:active, +QColumnView::item:selected:active { + background-color: #1464A0; +} + +QTableCornerButton::section { + background-color: #19232D; + border: 1px transparent #32414B; + border-radius: 0px; +} + +/* QHeaderView ------------------------------------------------------------ */ + +QHeaderView { + background-color: #32414B; + border: 0px transparent #32414B; + padding: 0px; + margin: 0px; + border-radius: 0px; +} + +QHeaderView:disabled { + background-color: #32414B; + border: 1px transparent #32414B; + padding: 2px; +} + +QHeaderView::section { + background-color: #32414B; + color: #F0F0F0; + padding: 2px; + border-radius: 0px; + text-align: left; +} + +QHeaderView::section:checked { + color: #F0F0F0; + background-color: #1464A0; +} + +QHeaderView::section:checked:disabled { + color: #787878; + background-color: #14506E; +} + +QHeaderView::section::horizontal:disabled, +QHeaderView::section::vertical:disabled { + color: #787878; +} + +QHeaderView::section::vertical::first, +QHeaderView::section::vertical::only-one { + border-top: 1px solid #32414B; +} + +QHeaderView::section::vertical { + border-top: 1px solid #19232D; +} + +QHeaderView::section::horizontal::first, +QHeaderView::section::horizontal::only-one { + border-left: 1px solid #32414B; +} + +QHeaderView::section::horizontal { + border-left: 1px solid #19232D; +} + +/* Those settings (border/width/height/background-color) solve bug */ +/* transparent arrow background and size */ + +QHeaderView::down-arrow { + background-color: #32414B; + width: 16px; + height: 16px; + border-right: 1px solid #19232D; + image: url(:/qss_icons/rc/down_arrow.png); +} + +QHeaderView::up-arrow { + background-color: #32414B; + width: 16px; + height: 16px; + border-right: 1px solid #19232D; + image: url(:/qss_icons/rc/up_arrow.png); +} + +/* QToolBox -------------------------------------------------------------- */ + +QToolBox { + padding: 0px; + border: 1px solid #32414B; +} + +QToolBox::selected { + padding: 0px; + border: 2px solid #1464A0; +} + +QToolBox::tab { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +QToolBox::tab:disabled { + color: #787878; +} + +QToolBox::tab:selected { + background-color: #505F69; + border-bottom: 2px solid #1464A0; +} + +QToolBox::tab:!selected { + background-color: #32414B; + border-bottom: 2px solid #32414B; +} + +QToolBox::tab:selected:disabled { + background-color: #32414B; + border-bottom: 2px solid #14506E; +} + +QToolBox::tab:!selected:disabled { + background-color: #19232D; +} + +QToolBox::tab:hover { + border-color: #148CD2; + border-bottom: 2px solid #148CD2; +} + +QToolBox QScrollArea QWidget QWidget { + padding: 0px; + background-color: #19232D; +} + +/* QFrame ----------------------------------------------------------------- */ + +QFrame { + border-radius: 4px; + border: 1px solid #32414B; +} + +QFrame[frameShape="0"] { + border-radius: 4px; + border: 1px transparent #32414B; +} + +QFrame[height="3"], +QFrame[width="3"] { + background-color: #19232D; +} + +/* QSplitter -------------------------------------------------------------- */ + +QSplitter { + background-color: #32414B; + spacing: 0; + padding: 0; + margin: 0; +} + +QSplitter::separator { + background-color: #32414B; + border: 0 solid #19232D; + spacing: 0; + padding: 1px; + margin: 0; +} + +QSplitter::separator:hover { + background-color: #787878; +} + +QSplitter::separator:horizontal { + width: 5px; + image: url(:/qss_icons/rc/Vsepartoolbar.png); +} + +QSplitter::separator:vertical { + height: 5px; + image: url(:/qss_icons/rc/Hsepartoolbar.png); +} + + +/* QDateEdit-------------------------------------------------------------- */ + +QDateEdit { + selection-background-color: #1464A0; + border-style: solid; + border: 1px solid #32414B; + border-radius: 4px; + padding-top: 2px; /* This fix #103, #111*/ + padding-bottom: 2px; /* This fix #103, #111*/ + padding-left: 4px; + padding-right: 4px; + min-width: 10px; +} + +QDateEdit:on { + selection-background-color: #1464A0; +} + +QDateEdit::drop-down { + subcontrol-origin: padding; + subcontrol-position: top right; + width: 20px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} + +QDateEdit::down-arrow { + image: url(:/qss_icons/rc/down_arrow_disabled.png); +} + +QDateEdit::down-arrow:on, +QDateEdit::down-arrow:hover, +QDateEdit::down-arrow:focus { + image: url(:/qss_icons/rc/down_arrow.png); +} + +QDateEdit QAbstractItemView { + background-color: #19232D; + border-radius: 4px; + border: 1px solid #32414B; + selection-background-color: #1464A0; +} + +QAbstractView:hover{ + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QAbstractView:selected { + background: #1464A0; + color: #32414B; +} + +