This introductory video walks you through getting started with the SavvyUI C++ GUI Components library. You’ll learn how to set up your project, create your application’s main window, and use layout managers.
Layout managers
This video explains how to use the layout managers built into the SavvyUI library, with a focus on the Grid and Fluid layouts. It demonstrates how each layout manager can be applied to real-world layout scenarios commonly found in applications.
Dialog Boxes
This video explains how to create and display dialog boxes. It also provides a real-world example of setting up a modal dialog to capture basic employee information, including how to initialize the dialog, retrieve data after it closes, and display the results.
Grid with Memory Data
This video demonstrates how to use the grid component to display and edit data from an in-memory data source. The tutorial does not cover paging; instead, it focuses on a simplified scenario where all data is stored in memory and displayed at once. A separate tutorial will cover using the grid component with paging enabled.
Grid with Paged Data
This tutorial demonstrates how to use the pager interface in the SavvyUI Grid component. The pager enables an application to supply data to the grid through a callback function it implements. Paged mode is ideal for large datasets, where loading all data into memory at once is not feasible.