File: SFileDialog.h

package info (click to toggle)
yudit 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 18,472 kB
  • sloc: cpp: 76,344; perl: 5,630; makefile: 989; ansic: 823; sh: 441
file content (120 lines) | stat: -rw-r--r-- 3,368 bytes parent folder | download
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/** 
 *  Yudit Unicode Editor Source File
 *
 *  GNU Copyright (C) 1997-2023  Gaspar Sinai <gaspar@yudit.org>  
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License, version 2,
 *  dated June 1991. See file COPYYING for details.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#ifndef SFileDialog_h
#define SFileDialog_h

#include "swidget/SFrame.h"
#include "swidget/SBorder.h"
#include "swidget/STextList.h"
#include "swidget/STextEdit.h"
#include "swidget/SButton.h"
#include "swidget/SListBox.h"
#include "swidget/STextEdit.h"
#include "swidget/STextDialog.h"
#include "swindow/SImage.h"
#include <stoolkit/SIO.h> 

class SFileDialog : public SFrame, 
  public SListListener, public SButtonListener, public STextEditLS,
  public SFrameListener
{
public:
  SFileDialog (void);
  virtual ~SFileDialog ();
  bool  getInput(const SString& title, bool shouldExist, bool warnexist);

  void setFont (const SString& font, double fontSize=0.0);
  void setFontSize (double fontSize);

  virtual void setBackground (const SColor& bg);
  virtual void setForeground (const SColor& lrfg, const SColor& rlfg);
  virtual void setTitleForeground (const SColor& fg);
  virtual void setSliderBackground (const SColor& bg);
  virtual void setApplicationImage (const SImage& image);

  void setLabelForeground (const SColor& fg);

  void setFileName (const SString& filename);
  bool setFileType (const SString& fileType);
  void setFileTypes (const SStringVector& fileTypes);
  const SStringVector& getFileTypes() const;


  SString getFileName ();
  SString getUnixFileName ();
  SString getFileType ();

  protected:
  virtual void buttonPressedAccel (void* source, const SAccelerator* acc);
  virtual void itemSelected (void* source, const SAccelerator* acc);
  virtual void textEntered (void *source);
  virtual void textChanged (void *source);
  virtual void focusChanged (void *source, bool in);
  virtual bool close (SPanel* comp);
  virtual bool gainedKeyboardFocus (SWindow* w);

  private:
  bool     isCancel;
  bool     isFocused;
  void     fileTypeChanged (const SString& filetype);
  void     filterChanged();

  /* filetypes */
  SStringVector fileTypeVector;
  SString    fileFilter;
  
  void     rereadDir();
  void     recalc ();
  void     setHidden();

  STextDialog* textDialog;

  bool     showHidden;

  SListBox*  folderListBox;
  SListBox*  fileListBox;
  SListBox*  fileTypeListBox;

  SButton*   fileTypeButton;

  STextEdit*   filterTextEdit;
  STextEdit*   fileTextEdit;

  SLabel*    folderTitleLabel;
  SLabel*    folderNameLabel;
  SLabel*    filterTitleLabel;


  SLabel*    fileTitleLabel;
  SLabel*    fileTypeLabel;
  SString    fileTypeText;
 
  SButton*   hiddenButton;
  SButton*   yesButton;
  SButton*   cdButton;
  SButton*   createButton;
  SButton*   cancelButton;
  SButton*   homeButton;


  SDir currentDirectory;
};

#endif /* SFileDialog_h */