I want to increase the Height of the navigationBar in CalendarWidget
-
wrote on 8 Sept 2015, 04:10 last edited by ForestPoem 9 Aug 2015, 04:15
Hello, everyone,I want to increase the Height of the navigationBar.CalendarWidget.
Tried using a style sheet, but increased the size of the arrow-down and arrow -up.
Want to increase the Height of navigationBar. -
Lifetime Qt Championwrote on 8 Sept 2015, 06:51 last edited by mrjj 9 Aug 2015, 06:54
Hi
I don't think you can only increase that height.You could change Font size and get it bigger that way
QCalendarWidget QWidget#qt_calendar_navigationbar {
font-size: 24px;
}Have a look at
http://www.qtcentre.org/archive/index.php/t-30478.htmlYou can do it from code with
QWidget *calendarNavBar = ui->calendarWidget->findChild<QWidget *>("qt_calendar_navigationbar"); if (calendarNavBar) { calendarNavBar->setMinimumHeight(200); }
-
Hi
I don't think you can only increase that height.You could change Font size and get it bigger that way
QCalendarWidget QWidget#qt_calendar_navigationbar {
font-size: 24px;
}Have a look at
http://www.qtcentre.org/archive/index.php/t-30478.htmlYou can do it from code with
QWidget *calendarNavBar = ui->calendarWidget->findChild<QWidget *>("qt_calendar_navigationbar"); if (calendarNavBar) { calendarNavBar->setMinimumHeight(200); }
wrote on 8 Sept 2015, 07:39 last edited by ForestPoem 9 Aug 2015, 07:52This method is not considered haeteotneunde Thank you
But are you CalendarWidget drop out when you press the button QDateEdit can I fix ?
-
This method is not considered haeteotneunde Thank you
But are you CalendarWidget drop out when you press the button QDateEdit can I fix ?
@ForestPoem said:
haeteotneunde
No idea what that is but
calendarNavBar is part of private class of calendarWidget so accessing it
might break later on even if a bit unlikely as its not been changed for a long time and it pretty stable. -
@ForestPoem said:
haeteotneunde
No idea what that is but
calendarNavBar is part of private class of calendarWidget so accessing it
might break later on even if a bit unlikely as its not been changed for a long time and it pretty stable.wrote on 8 Sept 2015, 08:07 last edited by@mrjj
Oh thank you very much. It's a good thing to learn!
3/5