cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Modeling - Ribbon UI - change color scheme

Modeling - Ribbon UI - change color scheme

With the following unsupportet switch, the color scheme can be changed:

(uib::win-set-skin-style :silver)
(uib::win-set-skin-style :black)

(uib::win-set-skin-style :blue)

(uib::win-set-skin-style :creo)

This should be a standart function.

20-03-2013 18-04-54.bmp

9 Comments
wdesmet
3-Visitor

very cool. i just have an issue when i change to silver, black or blue in modeling module and i have a drawing open in annotation. then my annotation viewport does not maximize correctly anymore.

restarting annotation module resolves the issue.

the issue also appears in the other direction (changing in annotation gives same issue in modeling module) but here it can be fixed by creating a new viewport.

seems like it just needs a little bug fixing, but i do love this functionality.

jschaile
3-Visitor

The same colors would be also nice in the UI of Model Manager - not only Modeling!

ptc-4864603
1-Newbie

how do you use that switch?

sreinbold
6-Contributor

We have added the following lisp in the toolbox:

(in-package  :custom)
(use-package :oli)

(sd-defdialog 'CHANGE_UI_COLOR
  :dialog-title  (sd-multi-lang-string "ui-change-color" :german "UI Farbe wechseln" :schinese "ui_change-color")
  :toolbox-button t 

  :variables
  '(
    (creo 
       :title (sd-multi-lang-string "creo standard" :german "Creo Standard" :schinese "creo standard")
    :push-action
   (uib::win-set-skin-style :creo))
(blue 
       :title (sd-multi-lang-string "blue" :german "blau" :schinese "blue")
    :push-action
   (uib::win-set-skin-style :blue))
(silver 
       :title (sd-multi-lang-string "silver" :german "silber" :schinese "silver")
    :push-action
   (uib::win-set-skin-style :silver))
  
(black 
      :title (sd-multi-lang-string "black" :german "schwarz" :schinese "black")
    :push-action
   (uib::win-set-skin-style :black))
   )
)

ptc-4864603
1-Newbie

Still wondering how do you use the switch?  Where do you enter those strings?

Thanks.

ThomasKirkman
16-Pearl

Type it in the command line. command-line.JPG

dhermosillo
13-Aquamarine

How do you enable the command line?

PTCModerator
Emeritus
Status changed to: Acknowledged
 
olivierlp
Community Manager
Status changed to: Archived

Hello,

We are archiving your idea as part of a general review. This action is based on the age of your idea and the total number of votes received, as per this announcement.

You can always post a new idea with all the details required in the form.

Thank you for your participation.