This commit is contained in:
2018-01-12 16:25:59 +01:00
parent be21050ea0
commit cac694169f
856 changed files with 822 additions and 258 deletions
+82 -109
View File
@@ -57,74 +57,47 @@ cMainWindow::cMainWindow(QWidget *parent) :
updateMenu();
}
//https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html#names
void cMainWindow::createActions()
{
m_lpMenuFile = menuBar()->addMenu(tr("&File"));
m_lpToolBarFile = addToolBar(tr("File"));
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileNewProject, "document-new", ":/icons/newFile.bmp", tr("&New Project..."), QKeySequence::New, tr("Create a new project"), &cMainWindow::onMenuFileNewProject);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileOpenProject, "document-open", ":/icons/openFile.bmp", tr("&Open Project..."), QKeySequence::Open, tr("Open a project"), &cMainWindow::onMenuFileOpenProject);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileCloseProject, "document-close", ":/icons/closeFile.bmp", tr("&Close Project..."), QKeySequence::Close, tr("Close project"), &cMainWindow::onMenuFileCloseProject);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileNewProject, ":/icons/normal/New file.png", ":/icons/hot/New File.png", ":/icons/disabled/New File", tr("&New Project..."), QKeySequence::New, tr("Create a new project"), &cMainWindow::onMenuFileNewProject);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileOpenProject, ":/icons/normal/Open file.png", ":/icons/hot/Open file.png", ":/icons/disabled/Open file.png", tr("&Open Project..."), QKeySequence::Open, tr("Open a project"), &cMainWindow::onMenuFileOpenProject);
createAction(m_lpMenuFile, 0, &m_lpActionFileCloseProject, "", "", "", tr("&Close Project..."), QKeySequence::Close, tr("Close project"), &cMainWindow::onMenuFileCloseProject);
createSeparator(m_lpMenuFile, m_lpToolBarFile);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileExport, "document-export", ":/icons/saveRecord.bmp", tr("&Export..."), QKeySequence::UnknownKey, tr("Export project"), &cMainWindow::onMenuFileExport);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileExport, ":/icons/normal/Save file.png",":/icons/hot/Save file.png", ":/icons/disabled/Save file", tr("&Export..."), QKeySequence::UnknownKey, tr("Export project"), &cMainWindow::onMenuFileExport);
createSeparator(m_lpMenuFile, m_lpToolBarFile);
createAction(m_lpMenuFile, m_lpToolBarFile, &m_lpActionFileClose, "", "", tr("&Close"), QKeySequence::Quit, tr("Close application"), &cMainWindow::onMenuFileClose);
createAction(m_lpMenuFile, 0, &m_lpActionFileClose, "", "", "", tr("&Close"), QKeySequence::Quit, tr("Close application"), &cMainWindow::onMenuFileClose);
m_lpMenuDistributor = menuBar()->addMenu(tr("&Distributor"));
m_lpToolBarDistributor = addToolBar(tr("Distributor"));
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorShow, "", "", tr("&show..."), QKeySequence::UnknownKey, tr("Show distributor list"), &cMainWindow::onMenuDistributorShow);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorAdd, "", "", tr("&add..."), QKeySequence::UnknownKey, tr("Add a new distributor"), &cMainWindow::onMenuDistributorAdd);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorEdit, "", "", tr("&edit..."), QKeySequence::UnknownKey, tr("Edit a distributor"), &cMainWindow::onMenuDistributorEdit);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorDelete, "", "", tr("&delete..."), QKeySequence::UnknownKey, tr("Delete a distributor"), &cMainWindow::onMenuDistributorDelete);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorShow, ":/icons/normal/Open.png", ":/icons/hot/Open.png", ":/icons/disabled/Open.png", tr("&show distributor list..."), QKeySequence::UnknownKey, tr("Show distributor list"), &cMainWindow::onMenuDistributorShow);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorAdd, ":/icons/normal/Add.png", ":/icons/hot/Add.png", ":/icons/disabled/Add.png", tr("&add distributor..."), QKeySequence::UnknownKey, tr("Add distributor"), &cMainWindow::onMenuDistributorAdd);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorEdit, ":/icons/normal/Edit.png", ":/icons/hot/Edit.png", ":/icons/disabled/Edit.png", tr("&edit distributor..."), QKeySequence::UnknownKey, tr("Edit distributor"), &cMainWindow::onMenuDistributorEdit);
createAction(m_lpMenuDistributor, m_lpToolBarDistributor, &m_lpActionDistributorDelete, ":/icons/normal/Delete.png", ":/icons/hot/Delete.png", ":/icons/disabled/Delete.png", tr("&delete distributor..."), QKeySequence::UnknownKey, tr("Delete distributor"), &cMainWindow::onMenuDistributorDelete);
m_lpMenuParts = menuBar()->addMenu(tr("&Part"));
m_lpToolBarParts = addToolBar(tr("Part"));
createAction(m_lpMenuParts, m_lpToolBarParts, &m_lpActionPartsShow, ":/icons/normal/Open.png", ":/icons/hot/Open.png", ":/icons/disabled/Open.png", tr("&show part list..."), QKeySequence::UnknownKey, tr("Show part list"), &cMainWindow::onMenuPartsShow);
createAction(m_lpMenuParts, m_lpToolBarParts, &m_lpActionPartsAdd, ":/icons/normal/Add.png", ":/icons/hot/Add.png", ":/icons/disabled/Add.png", tr("&add part..."), QKeySequence::UnknownKey, tr("Add part"), &cMainWindow::onMenuPartsAdd);
createAction(m_lpMenuParts, m_lpToolBarParts, &m_lpActionPartsEdit, ":/icons/normal/Edit.png", ":/icons/hot/Edit.png", ":/icons/disabled/Edit.png", tr("&edit part..."), QKeySequence::UnknownKey, tr("Edit part"), &cMainWindow::onMenuPartsEdit);
createAction(m_lpMenuParts, m_lpToolBarParts, &m_lpActionPartsDelete, ":/icons/normal/Delete.png", ":/icons/hot/Delete.png", ":/icons/disabled/Delete.png", tr("&delete part..."), QKeySequence::UnknownKey, tr("Delete part"), &cMainWindow::onMenuPartsDelete);
m_lpMenuPartlist = menuBar()->addMenu(tr("Part&list"));
m_lpToolBarPartlist = addToolBar(tr("Partlist"));
createAction(m_lpMenuPartlist, m_lpToolBarPartlist, &m_lpActionPartlistNew, ":/icons/normal/New file.png", ":/icons/hot/New file.png", ":/icons/disabled/New file.png", tr("&new partlist..."), QKeySequence::UnknownKey, tr("New partlist"), &cMainWindow::onMenuPartlistNew);
createAction(m_lpMenuPartlist, m_lpToolBarPartlist, &m_lpActionPartlistOpen, ":/icons/normal/Open file.png", ":/icons/hot/Open file.png", ":/icons/disabled/Open file.png", tr("&open partlist..."), QKeySequence::UnknownKey, tr("Show partlist"), &cMainWindow::onMenuPartlistOpen);
createSeparator(m_lpMenuPartlist, m_lpToolBarPartlist);
createAction(m_lpMenuPartlist, 0, &m_lpActionPartlistClose, "", "", "", tr("&close"), QKeySequence::UnknownKey, tr("Add a new distributor"), &cMainWindow::onMenuPartlistClose);
createSeparator(m_lpMenuPartlist, m_lpToolBarPartlist);
createAction(m_lpMenuPartlist, m_lpToolBarPartlist, &m_lpActionPartlistSave, ":/icons/normal/Save file.png", ":/icons/hot/Save file.png", ":/icons/disabled/Save file.png", tr("&save partlist"), QKeySequence::UnknownKey, tr("Save partlist"), &cMainWindow::onMenuPartlistSave);
createAction(m_lpMenuPartlist, m_lpToolBarPartlist, &m_lpActionPartlistSaveAs, ":/icons/normal/Save as.png", ":/icons/hot/Save as.png", ":/icons/disabled/Save as.png", tr("save partlist &as..."), QKeySequence::UnknownKey, tr("Save partlist as"), &cMainWindow::onMenuPartlistSaveAs);
}
/*
Parts
show...
add...
edit...
delete
QMenu* m_lpMenuParts;
QToolBar* m_lpToolBarParts;
QAction* m_lpActionPartsShow;
QAction* m_lpActionPartsAdd;
QAction* m_lpActionPartsEdit;
QAction* m_lpActionPartsDelete;
void onMenuPartsShow();
void onMenuPartsAdd();
void onMenuPartsEdit();
void onMenuPartsDelete();
void onMainTab_currentChanged(int);
Partlist
new...
open...
-
close
-
save
save as...
QMenu* m_lpMenuPartlist;
QToolBar* m_lpToolBarPartlist;
QAction* m_lpPartlistNew;
QAction* m_lpPartlistOpen;
QAction* m_lpPartlistClose;
QAction* m_lpPartlistSave;
QAction* m_lpPartlistSaveAs;
void onMenuPartlistNew();
void onMenuPartlistOpen();
void onMenuPartlistClose();
void onMenuPartlistSave();
void onMenuPartlistSaveAs();
*/
cMainWindow::~cMainWindow()
{
if(m_lpDistributorWindow)
@@ -490,21 +463,21 @@ void cMainWindow::updateMenu()
QWidget* lpWidget = ui->m_lpMainTab->currentWidget();
if(!lpWidget)
{
ui->m_lpMenuDistributorShow->setEnabled(true);
ui->m_lpMenuDistributorAdd->setEnabled(false);
ui->m_lpMenuDistributorEdit->setEnabled(false);
ui->m_lpMenuDistributorDelete->setEnabled(false);
m_lpActionDistributorShow->setEnabled(true);
m_lpActionDistributorAdd->setEnabled(false);
m_lpActionDistributorEdit->setEnabled(false);
m_lpActionDistributorDelete->setEnabled(false);
ui->m_lpMenuPartsShow->setEnabled(true);
ui->m_lpMenuPartsAdd->setEnabled(false);
ui->m_lpMenuPartsEdit->setEnabled(false);
ui->m_lpMenuPartsDelete->setEnabled(false);
m_lpActionPartsShow->setEnabled(true);
m_lpActionPartsAdd->setEnabled(false);
m_lpActionPartsEdit->setEnabled(false);
m_lpActionPartsDelete->setEnabled(false);
ui->m_lpMenuPartlistNew->setEnabled(true);
ui->m_lpMenuPartlistOpen->setEnabled(true);
ui->m_lpMenuPartlistClose->setEnabled(false);
ui->m_lpMenuPartlistSave->setEnabled(false);
ui->m_lpMenuPartlistSaveAs->setEnabled(false);
m_lpActionPartlistNew->setEnabled(true);
m_lpActionPartlistOpen->setEnabled(true);
m_lpActionPartlistClose->setEnabled(false);
m_lpActionPartlistSave->setEnabled(false);
m_lpActionPartlistSaveAs->setEnabled(false);
return;
}
@@ -515,73 +488,73 @@ void cMainWindow::updateMenu()
if(lpDistributorWindow)
{
ui->m_lpMenuDistributorShow->setEnabled(false);
ui->m_lpMenuDistributorAdd->setEnabled(true);
m_lpActionDistributorShow->setEnabled(false);
m_lpActionDistributorAdd->setEnabled(true);
if(lpDistributorWindow->somethingSelected())
{
ui->m_lpMenuDistributorEdit->setEnabled(true);
ui->m_lpMenuDistributorDelete->setEnabled(true);
m_lpActionDistributorEdit->setEnabled(true);
m_lpActionDistributorDelete->setEnabled(true);
}
else
{
ui->m_lpMenuDistributorEdit->setEnabled(false);
ui->m_lpMenuDistributorDelete->setEnabled(false);
m_lpActionDistributorEdit->setEnabled(false);
m_lpActionDistributorDelete->setEnabled(false);
}
ui->m_lpMenuPartsShow->setEnabled(true);
ui->m_lpMenuPartsAdd->setEnabled(false);
ui->m_lpMenuPartsEdit->setEnabled(false);
ui->m_lpMenuPartsDelete->setEnabled(false);
m_lpActionPartsShow->setEnabled(true);
m_lpActionPartsAdd->setEnabled(false);
m_lpActionPartsEdit->setEnabled(false);
m_lpActionPartsDelete->setEnabled(false);
ui->m_lpMenuPartlistNew->setEnabled(true);
ui->m_lpMenuPartlistOpen->setEnabled(true);
ui->m_lpMenuPartlistClose->setEnabled(false);
ui->m_lpMenuPartlistSave->setEnabled(false);
ui->m_lpMenuPartlistSaveAs->setEnabled(false);
m_lpActionPartlistNew->setEnabled(true);
m_lpActionPartlistOpen->setEnabled(true);
m_lpActionPartlistClose->setEnabled(false);
m_lpActionPartlistSave->setEnabled(false);
m_lpActionPartlistSaveAs->setEnabled(false);
}
else if(lpPartWindow)
{
ui->m_lpMenuPartsShow->setEnabled(false);
ui->m_lpMenuPartsAdd->setEnabled(true);
m_lpActionPartsShow->setEnabled(false);
m_lpActionPartsAdd->setEnabled(true);
if(!lpPartWindow->groupSelected())
{
ui->m_lpMenuPartsEdit->setEnabled(true);
ui->m_lpMenuPartsDelete->setEnabled(true);
m_lpActionPartsEdit->setEnabled(true);
m_lpActionPartsDelete->setEnabled(true);
}
else
{
ui->m_lpMenuPartsEdit->setEnabled(false);
ui->m_lpMenuPartsDelete->setEnabled(false);
m_lpActionPartsEdit->setEnabled(false);
m_lpActionPartsDelete->setEnabled(false);
}
ui->m_lpMenuDistributorShow->setEnabled(true);
ui->m_lpMenuDistributorAdd->setEnabled(false);
ui->m_lpMenuDistributorEdit->setEnabled(false);
ui->m_lpMenuDistributorDelete->setEnabled(false);
m_lpActionDistributorShow->setEnabled(true);
m_lpActionDistributorAdd->setEnabled(false);
m_lpActionDistributorEdit->setEnabled(false);
m_lpActionDistributorDelete->setEnabled(false);
ui->m_lpMenuPartlistNew->setEnabled(true);
ui->m_lpMenuPartlistOpen->setEnabled(true);
ui->m_lpMenuPartlistClose->setEnabled(false);
ui->m_lpMenuPartlistSave->setEnabled(false);
ui->m_lpMenuPartlistSaveAs->setEnabled(false);
m_lpActionPartlistNew->setEnabled(true);
m_lpActionPartlistOpen->setEnabled(true);
m_lpActionPartlistClose->setEnabled(false);
m_lpActionPartlistSave->setEnabled(false);
m_lpActionPartlistSaveAs->setEnabled(false);
}
else if(lpPartlistWindow)
{
ui->m_lpMenuPartlistNew->setEnabled(true);
ui->m_lpMenuPartlistOpen->setEnabled(true);
ui->m_lpMenuPartlistClose->setEnabled(true);
ui->m_lpMenuPartlistSave->setEnabled(lpPartlistWindow->somethingChanged());
ui->m_lpMenuPartlistSaveAs->setEnabled(true);
m_lpActionPartlistNew->setEnabled(true);
m_lpActionPartlistOpen->setEnabled(true);
m_lpActionPartlistClose->setEnabled(true);
m_lpActionPartlistSave->setEnabled(lpPartlistWindow->somethingChanged());
m_lpActionPartlistSaveAs->setEnabled(true);
ui->m_lpMenuDistributorShow->setEnabled(true);
ui->m_lpMenuDistributorAdd->setEnabled(false);
ui->m_lpMenuDistributorEdit->setEnabled(false);
ui->m_lpMenuDistributorDelete->setEnabled(false);
m_lpActionDistributorShow->setEnabled(true);
m_lpActionDistributorAdd->setEnabled(false);
m_lpActionDistributorEdit->setEnabled(false);
m_lpActionDistributorDelete->setEnabled(false);
ui->m_lpMenuPartsShow->setEnabled(true);
ui->m_lpMenuPartsAdd->setEnabled(false);
ui->m_lpMenuPartsEdit->setEnabled(false);
ui->m_lpMenuPartsDelete->setEnabled(false);
m_lpActionPartsShow->setEnabled(true);
m_lpActionPartsAdd->setEnabled(false);
m_lpActionPartsEdit->setEnabled(false);
m_lpActionPartsDelete->setEnabled(false);
}
}
+21 -10
View File
@@ -21,6 +21,8 @@
#include <QAction>
#include <QMetaObject>
#include <QPixmap>
namespace Ui {
class cMainWindow;
@@ -62,11 +64,11 @@ private:
QMenu* m_lpMenuPartlist;
QToolBar* m_lpToolBarPartlist;
QAction* m_lpPartlistNew;
QAction* m_lpPartlistOpen;
QAction* m_lpPartlistClose;
QAction* m_lpPartlistSave;
QAction* m_lpPartlistSaveAs;
QAction* m_lpActionPartlistNew;
QAction* m_lpActionPartlistOpen;
QAction* m_lpActionPartlistClose;
QAction* m_lpActionPartlistSave;
QAction* m_lpActionPartlistSaveAs;
QSqlDatabase m_db;
cDistributorList m_distributorList;
@@ -79,19 +81,27 @@ private:
void createActions();
template <typename Func2>
void createAction(QMenu* lpMenu, QToolBar* lpToolbar, QAction** lplpAction, const QString& szIcon, const QString& szIconFallback, const QString& szAction, QKeySequence::StandardKey sequence, const QString& szStatusTip, Func2 method)
void createAction(QMenu* lpMenu, QToolBar* lpToolbar, QAction** lplpAction, const QString& szIcon, const QString& szIconHot, const QString& szIconDisabled, const QString& szAction, QKeySequence::StandardKey sequence, const QString& szStatusTip, Func2 method)
{
if(szIcon.isEmpty() && szIconFallback.isEmpty())
if(!lpToolbar)
{
(*lplpAction) = new QAction(szAction, this);
(*lplpAction) = new QAction(szAction, this);
(*lplpAction)->setShortcuts(sequence);
(*lplpAction)->setStatusTip(szStatusTip);
lpMenu->addAction((*lplpAction));
}
else
{
const QIcon newIcon = QIcon::fromTheme(szIcon, QIcon(szIconFallback));
(*lplpAction) = new QAction(newIcon, szAction, this);
QPixmap hot(szIconHot);
QPixmap disabled(szIconDisabled);
QIcon newIcon = QIcon(szIcon);
if(!szIconHot.isEmpty())
newIcon.addPixmap(hot, QIcon::Selected);
if(!szIconDisabled.isEmpty())
newIcon.addPixmap(disabled, QIcon::Disabled);
(*lplpAction) = new QAction(newIcon, szAction, this);
(*lplpAction)->setShortcuts(sequence);
(*lplpAction)->setStatusTip(szStatusTip);
lpMenu->addAction((*lplpAction));
@@ -99,6 +109,7 @@ private:
}
connect((*lplpAction), &QAction::triggered, this, method);
}
void createSeparator(QMenu* lpMenu, QToolBar* lpToolbar)
{
lpMenu->addSeparator();
+2 -4
View File
@@ -53,7 +53,7 @@
</action>
<action name="m_lpMenuFileNewProject">
<property name="icon">
<iconset resource="qtpartlist.qrc">
<iconset>
<normaloff>:/icons/indentGuide_off.ico</normaloff>:/icons/indentGuide_off.ico</iconset>
</property>
<property name="text">
@@ -145,8 +145,6 @@
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources>
<include location="qtpartlist.qrc"/>
</resources>
<resources/>
<connections/>
</ui>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 450 B

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 595 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 602 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 746 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 790 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 382 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 698 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 619 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 777 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 417 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 679 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 467 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 720 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 647 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 515 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 433 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 805 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 483 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 646 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 B

Some files were not shown because too many files have changed in this diff Show More