class KRadioGroup

Class for group of radio butons in toolbar. More...

Definition#include <ktoolbar.h>
InheritsQObject
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods

Public Slots


Detailed Description

KRadioGroup is class for group of radio butons in toolbar. Take toggle buttons which you already inserted into toolbar, create KRadioGroup instance and add them here. All buttons will emit signals toggled (bool) (or you can use sitgnal toggled (int id) from toolbar). When one button is set down, all others are unset. All buttons emit signals - those who "go down" and those who "go up".

 KRadioGroup (QWidget *_parent, const char *_name=0)

Constructor. Parent must be KToolBar .

KRadioGroup ()

Destructor.

void  addButton (int id)

Adds button to group. Button cannot be unset by mouse clicks (you must press some other button tounset this one)

void  removeButton (int id)

Removes button from group, making it again toggle button (i.e. You can unset it with mouse).

void  slotToggled (int)

[slot]

Internal - nothing for you here.