Example #1
0
void show_player(void) {
  initialize_ui();
  window_set_window_handlers(s_window, (WindowHandlers) {
    .unload = handle_window_unload,
    .appear = handle_window_appear,
    .disappear = handle_window_disappear,
  });
CellConnectionDialog::CellConnectionDialog(CellView* fromCell, CellView* toCell, QWidget *parent) :
    QDialog(parent),
		ui(new Ui::CellConnectionDialog),
		toCell(toCell),
		fromCell(fromCell)
{
	if( NULL == fromCell )
	{
		throw std::logic_error( "NULL == fromCell" );
	}

	if( NULL == toCell )
	{
		throw std::logic_error( "NULL == toCell" );
	}

	ui->setupUi(this);
	initialize_ui();
	initialize_signals();
}
Example #3
0
void show_playlists(void) {
  initialize_ui();
  window_set_window_handlers(s_window, (WindowHandlers) {
    .unload = handle_window_unload,
  });