blob: c0634882e7eec7789a4a4e9609b1bc854b44b428 (
plain)
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
  | 
//
// C++ Interface: 
//
// Description: 
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9PREFPREVIEW_H
#define K9PREFPREVIEW_H
#include "k9common.h"
#include "prefpreview.h"
class k9prefPreview : public prefPreview
{
  TQ_OBJECT
  
public:
  k9prefPreview(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
  ~k9prefPreview();
  /*$PUBLIC_FUNCTIONS$*/
  void save();
public slots:
  /*$PUBLIC_SLOTS$*/
  void rbInternalClick();
  void rbMplayerClick();
protected:
  /*$PROTECTED_FUNCTIONS$*/
  void load();
protected slots:
  /*$PROTECTED_SLOTS$*/
};
#endif
  |