~ubuntu-branches/ubuntu/lucid/kdepim-runtime/lucid

« back to all changes in this revision

Viewing changes to resources/mbox/lockmethodpage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-03 15:38:40 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20091203153840-x5fxfsfby0czyqu6
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Refresh all patches
  - Bump build-depend versions
  - Remove build-depend on libknotificationitem-dev, it's part of
    kdelibs5-dev now
  - Add build-depend on shared-desktop-ontologies for nepomuk support
  - Add build-depend on libstreamanalyzer-dev for strigi support
  - Add build-depend on libx11-dev to prevent FTBFS
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2009 Bertjan Broeksema <b.broeksema@kdemail.net>
 
3
 
 
4
    This library is free software; you can redistribute it and/or modify it
 
5
    under the terms of the GNU Library General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or (at your
 
7
    option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful, but WITHOUT
 
10
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
11
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 
12
    License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to the
 
16
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
    02110-1301, USA.
 
18
*/
 
19
 
 
20
#include "lockmethodpage.h"
 
21
#include "settings.h"
 
22
 
 
23
#include <kconfigdialogmanager.h>
 
24
#include <kstandarddirs.h>
 
25
#include <kurlrequester.h>
 
26
 
 
27
LockMethodPage::LockMethodPage( QWidget *parent ) : QWidget( parent )
 
28
{
 
29
  ui.setupUi( this );
 
30
  checkAvailableLockMethods();
 
31
}
 
32
 
 
33
void LockMethodPage::checkAvailableLockMethods()
 
34
{
 
35
  // FIXME: I guess this whole checking makes only sense on linux machines.
 
36
 
 
37
  // Check for procmail lock method.
 
38
  if ( KStandardDirs::findExe( "lockfile" ).isEmpty() ) {
 
39
    ui.procmail->setEnabled( false );
 
40
    if ( ui.procmail->isChecked() ) // Select another lock method if necessary
 
41
      ui.mutt_dotlock->setChecked( true );
 
42
  }
 
43
 
 
44
  // Check for mutt lock method.
 
45
  if ( KStandardDirs::findExe( "mutt_dotlock" ).isEmpty() ) {
 
46
    ui.mutt_dotlock->setEnabled( false );
 
47
    ui.mutt_dotlock_privileged->setEnabled( false );
 
48
    if ( ui.mutt_dotlock->isChecked() || ui.mutt_dotlock_privileged->isChecked() )
 
49
    {
 
50
      if ( ui.procmail->isEnabled() )
 
51
        ui.procmail->setChecked(true);
 
52
      else
 
53
        ui.none->setChecked(true);
 
54
    }
 
55
  }
 
56
}
 
57
 
 
58
#include "lockmethodpage.moc"