Forum
Sign Up

How to save state of Ribbon control?

11 years 4 months ago #1 by Ludek
Hi,

Is there a simple way how to store/restore currently selected theme, ribbon settings, visibility, etc?


Thanks for info
Ludek

Please Log in or Create an account to join the conversation.

More
11 years 4 months ago #2 by Thomas Andries
Hello There,

I'm using the following method to store and restore settings:

QBuffer pbuff;
pbuff.open(QIODevice::WriteOnly);
GridView->saveLayoutToDevice(&pbuff);
pbuff.close();
QByteArray data = pbuff.data();

You can save the byte array using the registry or whatever method you prefer.
Just replace GridView with the actual object.

For restoring i use this:

QByteArray pcfg = loadSavedDataFromRegistryOrWhatever();
QBuffer pbuf(&pcfg);
pbuf.open(QIODevice::ReadOnly);
GridView->loadLayoutFromDevice(&pbuf);
pbuf.close();

Kind regards,

Thomas Andries
IT Experts BVBA

Please Log in or Create an account to join the conversation.

More
  • Not Allowed: to create new topic.
  • Not Allowed: to reply.
  • Not Allowed: to edit your message.
Moderators: Developer Machines
Time to create page: 0.118 seconds

Developer Newsletter

Join our Developer Machines newsletter to get informed on all the latest releases of the commercial components for Qt.C++, Delphi FireMonkey, updates and general knowledges.

Quick Support

Should you need any additional information about our products or licensing, please contact us at the following email addresses:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

  • This email address is being protected from spambots. You need JavaScript enabled to view it.

Get in Touch

If you would like to purchase our products or services, but don’t know how to do it the right way, please feel free to contact us:

  • This email address is being protected from spambots. You need JavaScript enabled to view it.( any questions related to our products or services )
  • This email address is being protected from spambots. You need JavaScript enabled to view it.( questions related to licensing )