gtkmm  3.91.0
Classes | Enumerations
Dialogs

Classes

class  Gtk::AboutDialog
 The AboutDialog offers a simple way to display information about a program like its logo, name, copyright, website and license. More...
 
class  Gtk::AppChooserDialog
 An application chooser dialog. More...
 
class  Gtk::Assistant
 A widget used to guide users through multi-step operations. More...
 
class  Gtk::ColorChooserDialog
 This dialog is for choosing a color. More...
 
class  Gtk::Dialog::ResponseTypeOrInt
 Helper class for implicit conversion from ResponseType to int in some situations. More...
 
class  Gtk::Dialog
 Create popup windows. More...
 
class  Gtk::FileChooserDialog
 Convenient file chooser window. More...
 
class  Gtk::FontChooserDialog
 A dialog box for selecting fonts. More...
 
class  Gtk::FontChooserWidget
 A dialog box for selecting fonts. More...
 
class  Gtk::MessageDialog
 Convenient message window. More...
 

Enumerations

enum  Gtk::Assistant::PageType {
  Gtk::Assistant::PageType::CONTENT,
  Gtk::Assistant::PageType::INTRO,
  Gtk::Assistant::PageType::CONFIRM,
  Gtk::Assistant::PageType::SUMMARY,
  Gtk::Assistant::PageType::PROGRESS,
  Gtk::Assistant::PageType::CUSTOM
}
 An enum for determining the page role inside the Gtk::Assistant. More...
 

Detailed Description

Enumeration Type Documentation

An enum for determining the page role inside the Gtk::Assistant.

It's used to handle buttons sensitivity and visibility.

Note that an assistant needs to end its page flow with a page of type Gtk::Assistant::PageType::CONFIRM, Gtk::Assistant::PageType::SUMMARY or Gtk::Assistant::PageType::PROGRESS to be correct.

The Cancel button will only be shown if the page isn’t “committed”. See Gtk::Assistant::commit() for details.

Enumerator
CONTENT 

The page has regular contents.

Both the Back and forward buttons will be shown.

INTRO 

The page contains an introduction to the assistant task.

Only the Forward button will be shown if there is a next page.

CONFIRM 

The page lets the user confirm or deny the changes.

The Back and Apply buttons will be shown.

SUMMARY 

The page informs the user of the changes done.

Only the Close button will be shown.

PROGRESS 

Used for tasks that take a long time to complete, blocks the assistant until the page is marked as complete.

Only the back button will be shown.

CUSTOM 

Used for when other page types are not appropriate.

No buttons will be shown, and the application must add its own buttons through Gtk::Assistant::add_action_widget().