File: scqtfileedit.h

package info (click to toggle)
zsafe 2.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 508 kB
  • ctags: 311
  • sloc: cpp: 5,021; sh: 110; makefile: 53
file content (106 lines) | stat: -rw-r--r-- 3,700 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/***************************************************************************
                          scqtfileedit.h  -  description
                             -------------------
    begin                : Mon Sep 3 2001
    copyright            : (C) 2001 by Werner Schulte
    email                : sc@schulte-ac.de
 ***************************************************************************/

/* $Id: scqtfileedit.h,v 2.1 2003/06/07 11:48:09 schneide Exp schneide $ */

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SCQTFILEEDIT_H
#define SCQTFILEEDIT_H

#include <qdir.h>
#include <qobject.h>
#include <qpixmap.h>
#include <qstring.h>
#include <qlistview.h>
#include <qcombobox.h>
#include <qtimer.h>

#include <scqtfiledlg.h>

#define MAXDIRCOMBOCOUNT  8
#define MAXTYPECOMBOCOUNT 8

/**
  *@author Werner Schulte
  */

class ScQtFileEditDlg : public ScQtFileDlg, QDir
{
  Q_OBJECT
public:
  ScQtFileEditDlg( QWidget *parent=0, const char *name=0,
               const QString &path="/", const QString &filter="*" );
  ~ScQtFileEditDlg();
  QString getResult( );
  QString getFileName( );
  void readIt( );
  void setAutoExtension( bool ex=false );
  void allowMkDir( bool mkdir=false );
  void setNFilter( bool ff=false );
  void setFSorting( bool ff=false );
  void setMode( int mode=QDir::All );

private slots:
  void slotOK( );
  void slotCancel( );
  void slotDoubleClicked( QListViewItem *item=0 );
  void slotSelectionChanged( QListViewItem *item=0 );
  void slotDirComboBoxChanged( int item );
  void slotTypeComboBoxChanged( int item );
  void slotFileTextChanged( const QString &txt="" );
  void slotShowDir();
  void slotMkDir();

protected:
  QTimer showTimer;
  bool   mkdirflag, fsorting, fnfilter;
  int    fmode;
  const QFileInfoList *qfil;
  bool rFlag, exflag; // recursionFlag,extensionflag
  QString bpath, bfilter, filename;
  QString dirstr,linkstr, filestr;
  QPixmap *fileIcon, *dirIcon, *linkIcon, *cdToParentIcon;
  const QFileInfoList *readDir( const QString &path="/", const QString &filter="*" );
  int checkComboEntryExists( QComboBox *com=0, const QString &str="" );
  void insDirCombo( const QString &str="" );
  void insTypeCombo( const QString &str="" );
  void initDirCombo( const QString &str="" );
  void initTypeCombo( const QString &str="" );
  void autoExtension( );

};

class ScQtFileEdit : public QObject
{
  Q_OBJECT
public:
  ScQtFileEdit( QWidget *parent=0, const char *name=0 );
  ~ScQtFileEdit();
  static void resize( int width, int height );
  static QString getOpenFileName( QWidget *parent=0, const char *name=0,
                                  const QString &path="/", const QString &filter="*" );
  static QString getSaveAsFileName( QWidget *parent=0, const char *name=0,
                                    const QString &path="/", const QString &filter="*" );
  static QString getDirName( QWidget *parent=0, const char *name=0,
                             const QString &path="/" );
  static QString mkDir( QWidget *parent=0, const char *name=0,
                        const QString &path="/", const QString &filter="*" );

protected:

};

#endif