mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 22:03:24 +00:00
Add a Warning icon on the changed tabs, for edition of dives.
Adds a Warning icon on the changed tabs, this is important as usability, for you could change something on the 'notes' tab, change the tab and did't realized that something was changed ( by forgotting or something ), then clicking on the cancel button. so now there's a friendly reminder that you actually changed something. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
bcefa4baff
commit
506b133875
4 changed files with 7 additions and 2 deletions
BIN
icons/warning.png
Normal file
BIN
icons/warning.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
|
@ -132,10 +132,12 @@ void MainTab::enableEdition()
|
||||||
bool MainTab::eventFilter(QObject* object, QEvent* event)
|
bool MainTab::eventFilter(QObject* object, QEvent* event)
|
||||||
{
|
{
|
||||||
if (isEnabled() && event->type() == QEvent::FocusIn && (object == ui->rating || object == ui->visibility)){
|
if (isEnabled() && event->type() == QEvent::FocusIn && (object == ui->rating || object == ui->visibility)){
|
||||||
|
tabBar()->setTabIcon(currentIndex(), QIcon(":warning"));
|
||||||
enableEdition();
|
enableEdition();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isEnabled() && event->type() == QEvent::MouseButtonPress ) {
|
if (isEnabled() && event->type() == QEvent::MouseButtonPress ) {
|
||||||
|
tabBar()->setTabIcon(currentIndex(), QIcon(":warning"));
|
||||||
enableEdition();
|
enableEdition();
|
||||||
}
|
}
|
||||||
return false; // don't "eat" the event.
|
return false; // don't "eat" the event.
|
||||||
|
@ -340,7 +342,8 @@ void MainTab::reload()
|
||||||
void MainTab::acceptChanges()
|
void MainTab::acceptChanges()
|
||||||
{
|
{
|
||||||
mainWindow()->dive_list()->setEnabled(true);
|
mainWindow()->dive_list()->setEnabled(true);
|
||||||
|
tabBar()->setTabIcon(0, QIcon()); // Notes
|
||||||
|
tabBar()->setTabIcon(1, QIcon()); // Equipment
|
||||||
ui->diveNotesMessage->animatedHide();
|
ui->diveNotesMessage->animatedHide();
|
||||||
ui->notesButtonBox->hide();
|
ui->notesButtonBox->hide();
|
||||||
/* now figure out if things have changed */
|
/* now figure out if things have changed */
|
||||||
|
@ -388,6 +391,8 @@ void MainTab::acceptChanges()
|
||||||
|
|
||||||
void MainTab::rejectChanges()
|
void MainTab::rejectChanges()
|
||||||
{
|
{
|
||||||
|
tabBar()->setTabIcon(0, QIcon()); // Notes
|
||||||
|
tabBar()->setTabIcon(1, QIcon()); // Equipment
|
||||||
mainWindow()->dive_list()->setEnabled(true);
|
mainWindow()->dive_list()->setEnabled(true);
|
||||||
if (mainWindow() && mainWindow()->dive_list()->selectedTrips.count() == 1){
|
if (mainWindow() && mainWindow()->dive_list()->selectedTrips.count() == 1){
|
||||||
ui->notes->setText(notesBackup[NULL].notes );
|
ui->notes->setText(notesBackup[NULL].notes );
|
||||||
|
|
|
@ -14,7 +14,6 @@ struct DiveList;
|
||||||
class QSortFilterProxyModel;
|
class QSortFilterProxyModel;
|
||||||
class DiveTripModel;
|
class DiveTripModel;
|
||||||
|
|
||||||
|
|
||||||
namespace Ui
|
namespace Ui
|
||||||
{
|
{
|
||||||
class MainWindow;
|
class MainWindow;
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<file alias="minimum">icons/minimum.svg</file>
|
<file alias="minimum">icons/minimum.svg</file>
|
||||||
<file alias="maximum">icons/maximum.svg</file>
|
<file alias="maximum">icons/maximum.svg</file>
|
||||||
<file alias="average">icons/average.svg</file>
|
<file alias="average">icons/average.svg</file>
|
||||||
|
<file alias="warning">icons/warning.png</file>
|
||||||
<file alias="table-css">qt-ui/css/tableviews.css</file>
|
<file alias="table-css">qt-ui/css/tableviews.css</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
Loading…
Add table
Reference in a new issue