summaryrefslogtreecommitdiff
path: root/dldialog/src/DLD_TV/dld_tvradio.h
blob: f5a623ecd4935c094ef896760d76884242ad423d (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
/******************************************************************************
**
** $Id: dld_tvradio.h,v 1.9 2000/03/15 20:02:19 harald Exp $
**
**	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.
**
** (C) (C) 1999,2000 Harald Hoyer <DLDialog@parzelle.de> - All rights reserved -
**
******************************************************************************/
#ifndef DLD_TVRADIO_H
#define DLD_TVRADIO_H

#include "../dld_radiobutton.h"
#include "dld_dialog.h"
#include "dld_radiolist.h"
#include <tvision/tv.h>

/** TV RadioButton implementation.
 */
class DLD_TVRadioButton : public DLD_TVObj, 
			  public DLD_RadioButton
{
public:
   /// Contructor.
   DLD_TVRadioButton(const string& name, DLD_TVDialog *pd);

   /// Destructor.
   virtual ~DLD_TVRadioButton();

   /// empty 
   void create() { DLD_Obj::create(); };

   /// empty 
   void changeBounds( const TRect&) {};

   /// empty 
   void calcBounds(TRect&, TPoint) {};
};
#endif