3c. wxWidgets – Buttons & Labels
OVERVIEW Buttons and labels are the most common controls used in GUI. Here we create a sample button and label and display them in a [...]
View Article3d. wxWidgets – Panels
OVERVIEW Panels are the basic containers which are used while creating UI layouts. They are created within the main wxFrame and help create top-level grouping [...]
View Article3e.wxWidgets- Preview to Event Handling
OVERVIEW We take a first look at handling events in wxWidgets. The simplest event is a button click. There are 3 ways of handling events: [...]
View Article4. wxWidgets – Menus & Toolbars
OVERVIEW In this section, we deal with menubars with submenus as well as toolbars. These are standard GUI artifacts and provide global navigational capabilities. The [...]
View Article4a. wxWidgets – Menu and MenuItems
OVERVIEW We are going to create an application with a menubar containing menus. Each menu will contain some menu items and we will add an [...]
View Article4b. wxWidgets – Submenu
OVERVIEW In this section, we will add a submenu to the File menu from the previous section and we will put the event handler on [...]
View Article4c. wxWidgets – Toolbar
OVERVIEW Toolbars are a band of icons, with or without text which span across the length or breadth of a window. They can contain controls [...]
View Article4d. wxWidgets – Multiple Toolbars
OVERVIEW We extend the code from the previous section to have two toolbars and divide the existing icons between the two. We use a wxBoxSizer [...]
View ArticleConvert IMDB data to MySql tables using C++ – Part 1
OVERVIEW IMDB , being the world’s best known and largest movie and TV website, does not provide any API to use their data. However , [...]
View Article5.wxWidgets – Layouts
OVERVIEW The main power of wxWidgets is in its layout management. All modern UI frameworks are responsive i.e the GUI arranges itself based on changes [...]
View Article5a. wxWidgets – Absolute Positioning
OVERVIEW We take a look at placing controls in a window with absolute positioning. This is not of much practical use except if you make [...]
View Article5b. wxWidgets – Dynamic Positioning with Sizers
OVERVIEW Dynamic positioning is done using Sizers. We look at 5 kinds of Sizers. Each of them is briefly described below wxBoxSizer – This allows [...]
View Article5b-1. wxWidgets – wxBoxSizer
OVERVIEW The wxBoxSizer sizer is the simplest sizer. It can arrange controls either horizontally or vertically. A wxBoxSizer can be horizontal or vertical. A vertical [...]
View Article5b-2. wxWidgets – wxStaticBoxSizer
OVERVIEW wxStaticBoxSizer is the same as wxBoxSizer except it draws a border around the controls contained within it. This is good for grouping controls visually. [...]
View Article5b-3. wxWidgets – GridSizer
OVERVIEW wxGridSizer lets you place controls in the form of a grid using rows and columns. All the cells in the grid will have the [...]
View Article5b-4. wxWidgets – FlexGridSizer
OVERVIEW The difference between wxGridSizer and wxFlexGridSizer is that in wxFlexGridSizer, rows can have different heights and columns can have different widths. For eg. in [...]
View Article5b-5. wxWidgets – GridBagSizer
OVERVIEW wxGridBagSizer adds more complexity to the wxFlexGridSizer by allowing controls to span multiple rows or columns. We can even specify which row or column [...]
View Article5b-6. wxWidgets – Building a Complex UI
OVERVIEW In this section, we will create a complex UI using multiple sizers. We will create an invoice format which allows entry of multiple items [...]
View Article6.wxWidgets – Event Handling
OVERVIEW To make a GUI work, we need Events. Events are generated when a user interacts with the GUI or some system processes are run [...]
View Article6a. wxWidgets – Using Event Tables
OVERVIEW We setup a simple GUI in this section and use an event table to handle various events. The event table handles the clicks on [...]
View Article