Added View All Files option
FossilOrigin-Name: 239c19ebecb1565f0c9e3319b1ea3d18bce59ab9
This commit is contained in:
parent
65e06d023e
commit
3bf716dff0
16
manifest
16
manifest
@ -1,5 +1,5 @@
|
||||
C Added\sbranch\son\scommit\nRefactored\sCommitDialog\n
|
||||
D 2015-05-24T08:47:24.547
|
||||
C Added\sView\sAll\sFiles\soption\n
|
||||
D 2015-05-24T09:00:03.257
|
||||
F .travis.yml 77966888a81c4ceee1fcc79bce842c9667ad8a35
|
||||
F debian/changelog eb4304dfcb6bb66850ec740838090eb50ce1249b
|
||||
F debian/compat b6abd567fa79cbe0196d093a067271361dc6ca8b
|
||||
@ -200,8 +200,8 @@ F src/Fossil.cpp a0b44c6b77de686e45cb4d84cfbf94865c8b39bf
|
||||
F src/Fossil.h 651d2a1c052abe2804f9eff366bf2561dc54f7eb
|
||||
F src/LoggedProcess.cpp 2a1e5c94bc1e57c8984563e66c210e43a14dc60c
|
||||
F src/LoggedProcess.h 85df7c635c807a5a0e8c4763f17a0752aaff7261
|
||||
F src/MainWindow.cpp ff43767952214b51530537efea858027cb408356
|
||||
F src/MainWindow.h f2141839cccb3941df9ed7288588f2de3a5c8179
|
||||
F src/MainWindow.cpp f0803414a83d70d357c1aa4a43ff20397eb9878f
|
||||
F src/MainWindow.h 0a10bf6f5c3ebf2aae1cef9e387289764d47586d
|
||||
F src/RevisionDialog.cpp 51065c65a07c118dd1a7363da4a55a135d1c6c9c
|
||||
F src/RevisionDialog.h b718c3009342eaabad39c8a11a253a4e4fef7a73
|
||||
F src/SearchBox.cpp d4209c575baa9933e1ce5ed376e785b289a145ba
|
||||
@ -219,10 +219,10 @@ F ui/BrowserWidget.ui 994ad9ea0e9f5815d6b1a27acc2f6f39164c507f
|
||||
F ui/CloneDialog.ui 4886e7d4f258ea8b852b5eefc860396e35145712
|
||||
F ui/CommitDialog.ui 5270bbf9c0b0c64d695420388160e2bb0e217d9f
|
||||
F ui/FileActionDialog.ui 89bb4dc2d0b8adcd41adcb11ec65f2028a09a12d
|
||||
F ui/MainWindow.ui 7f11c2ca1c3e371c71db27ae0fe6ad3758e6b5e1
|
||||
F ui/MainWindow.ui 13f5dee5a09a535dad7410bca36b80b81cdb3a36
|
||||
F ui/RevisionDialog.ui 27c3b98c665fec014a50cbf3352c0627f75e68cd
|
||||
F ui/SettingsDialog.ui 5aafd8784268ea7cd828330d4673500b8f38d6db
|
||||
P 4b4c7cdb6d717d381081bbfbd7e9657acf32d089
|
||||
R e360bba7a506e0fc5f0fa38b4d129c9b
|
||||
P 34efdbe98a491079ce2a2ae97c701ed5af118a4c
|
||||
R 6b21fa6d345f234ccb01b39f5e1f28b8
|
||||
U kostas
|
||||
Z 6beeae656e862ad56c841db3d3bac58a
|
||||
Z 946f9f191acc62afc553b9c6b7567862
|
||||
|
@ -1 +1 @@
|
||||
34efdbe98a491079ce2a2ae97c701ed5af118a4c
|
||||
239c19ebecb1565f0c9e3319b1ea3d18bce59ab9
|
@ -1682,6 +1682,16 @@ void MainWindow::on_actionViewIgnored_triggered()
|
||||
refresh();
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void MainWindow::on_actionViewAll_triggered()
|
||||
{
|
||||
ui->actionViewModified->setChecked(true);
|
||||
ui->actionViewUnchanged->setChecked(true);
|
||||
ui->actionViewUnknown->setChecked(true);
|
||||
ui->actionViewIgnored->setChecked(true);
|
||||
refresh();
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
void MainWindow::on_actionViewAsList_triggered()
|
||||
{
|
||||
@ -2451,4 +2461,3 @@ void MainWindow::onSearch()
|
||||
searchBox->setFocus();
|
||||
}
|
||||
|
||||
|
||||
|
@ -104,6 +104,7 @@ private slots:
|
||||
void on_actionViewModified_triggered();
|
||||
void on_actionViewUnknown_triggered();
|
||||
void on_actionViewIgnored_triggered();
|
||||
void on_actionViewAll_triggered();
|
||||
void on_actionViewAsList_triggered();
|
||||
void on_actionViewAsFolders_triggered();
|
||||
void on_actionOpenFolder_triggered();
|
||||
|
@ -81,7 +81,7 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<attribute name="headerVisible">
|
||||
<bool>true</bool>
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
<attribute name="headerShowSortIndicator" stdset="0">
|
||||
<bool>false</bool>
|
||||
@ -257,6 +257,7 @@
|
||||
<addaction name="actionViewUnchanged"/>
|
||||
<addaction name="actionViewUnknown"/>
|
||||
<addaction name="actionViewIgnored"/>
|
||||
<addaction name="actionViewAll"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionViewAsList"/>
|
||||
<addaction name="actionViewAsFolders"/>
|
||||
@ -932,6 +933,14 @@
|
||||
<string>View the workspace as files and folders</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionViewAll">
|
||||
<property name="text">
|
||||
<string>&All</string>
|
||||
</property>
|
||||
<property name="statusTip">
|
||||
<string>Show all files</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<layoutdefault spacing="6" margin="11"/>
|
||||
<customwidgets>
|
||||
|
Loading…
x
Reference in New Issue
Block a user