~ubuntu-branches/ubuntu/quantal/kdevplatform/quantal-proposed

« back to all changes in this revision

Viewing changes to shell/workingsets/workingsethelpers.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Bhargav Mangipudi
  • Date: 2010-12-16 19:31:23 UTC
  • mfrom: (0.3.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20101216193123-xe2keh5754zwsn1t
Tags: 1.1.80-0ubuntu1
* New upstream release
  - kdevplatform2-libs is now kdevplatform3-libs due to ABI changes
  - Update kdevplatform3-libs.install to include l10n files
  - Update kdevplatform-dev.install
* Removed localization packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright David Nolden  <david.nolden.kdevelop@art-master.de>
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License along
 
15
    with this program; if not, write to the Free Software Foundation, Inc.,
 
16
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
17
*/
 
18
 
 
19
#include "workingsethelpers.h"
 
20
 
 
21
#include <interfaces/iuicontroller.h>
 
22
 
 
23
#include <sublime/view.h>
 
24
#include <sublime/area.h>
 
25
 
 
26
#include "partdocument.h"
 
27
#include "mainwindow.h"
 
28
 
 
29
namespace KDevelop {
 
30
 
 
31
MainWindow* mainWindow() {
 
32
    MainWindow* window = dynamic_cast<MainWindow*>(Core::self()->uiController()->activeMainWindow());
 
33
    Q_ASSERT(window);
 
34
    return window;
 
35
}
 
36
 
 
37
void filterViews(QSet< QString > keepFiles)
 
38
{
 
39
    MainWindow* window = mainWindow();
 
40
 
 
41
    foreach(Sublime::View* view, window->area()->views()) {
 
42
 
 
43
        PartDocument* partDoc = dynamic_cast<PartDocument*>(view->document());
 
44
        if(partDoc && !keepFiles.contains(partDoc->documentSpecifier())) {
 
45
            if(view->document()->views().count() == 1) {
 
46
                partDoc->close();
 
47
                continue;
 
48
            }
 
49
 
 
50
            window->area()->closeView(view);
 
51
        }
 
52
    }
 
53
}
 
54
 
 
55
}