/**** * * Implementation of no-cards-found-dialog.h. * */ #include "label.h" #include "no-found-cards-dialog.h" #include #include NoFoundCardsDialog::NoFoundCardsDialog() { } void NoFoundCardsDialog::Compose() { w = new VBox(); ((VBox*) w)->Insert(new VGlue(round(0.20 * inch))); ((VBox*) w)->Insert(new Label( "No cards found with the given name.", "times", "bold", "r", 18)); ((VBox*) w)->Insert(new VGlue(round(0.20 * inch))); }