Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Set font for headers in QTableWidget
Forum Updated to NodeBB v4.3 + New Features

Set font for headers in QTableWidget

Scheduled Pinned Locked Moved Solved General and Desktop
2 Posts 1 Posters 1.4k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    GrahamLa
    wrote on last edited by
    #1

    Hi
    I want to change the font used for the horizontal and vertical headers in a QTableWidget.

    			QFont font = m_tableWidget->horizontalHeader()->font();
    
    			font.setWeight(QFont::Light);
    
    			m_tableWidget->verticalHeader()->setFont(font);
    			m_tableWidget->horizontalHeader()->setFont(font);
    
    			m_tableWidget->setHorizontalHeaderLabels(horizontalHeaderLabels);
    			m_tableWidget->setVerticalHeaderLabels(m_tableRowNames);
    
    

    As it stands this does not work. Does anyone have a suggestion?

    Thanks

    G 1 Reply Last reply
    0
    • G GrahamLa

      Hi
      I want to change the font used for the horizontal and vertical headers in a QTableWidget.

      			QFont font = m_tableWidget->horizontalHeader()->font();
      
      			font.setWeight(QFont::Light);
      
      			m_tableWidget->verticalHeader()->setFont(font);
      			m_tableWidget->horizontalHeader()->setFont(font);
      
      			m_tableWidget->setHorizontalHeaderLabels(horizontalHeaderLabels);
      			m_tableWidget->setVerticalHeaderLabels(m_tableRowNames);
      
      

      As it stands this does not work. Does anyone have a suggestion?

      Thanks

      G Offline
      G Offline
      GrahamLa
      wrote on last edited by
      #2

      @GrahamLa

      This was caused by a style sheet setting for all QHeaderView's

      1 Reply Last reply
      2

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved