• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. How to raise the schematic window by SKILL ?

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 143
  • Views 15567
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to raise the schematic window by SKILL ?

marbs
marbs over 15 years ago

 Hi All,

How can I raise the schematic window if it is iconified or if 

the schematic window is placed behind other windows, by using SKILL?

Because, during layout designing, it is difficult to find the schematic window,

if many windows exist.  I'm using icfb version 5.10.41.500.5.109 . 

Any help are appreciated. 

 

Regards, 

Marbs 

 

 

 

 

 

 

 

 

 

 

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 15 years ago

    Try reading the Cadence User Interface SKILL Functions Reference manual, in <ICinstDir>/doc/skuiref/skuiref.pdf (or via cdsdoc). Or search in cdsFinder for likely functions.

    You need to use hiRaiseWindow() or hiDeiconifyWindow()  . You may also want to use hiGetWindowIconifyState() to find out whether it is "iconized" (minimized) or not.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • skillUser
    skillUser over 15 years ago

    In addition to Andrew's post, you can use something like the following code to help you to find and then iterate over the schematic windows:

    
      setof(win hiGetWindowList() 
        rexMatchp("chematic" hiGetAppType(win))
      )
      => returns a list of window id's where the window is a schematic application
    

    You can then iterate over this list (e.g. with foreach) and decide whether to raise or de-iconify the window.

    Hopefully this additional information is helpful.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • marbs
    marbs over 15 years ago

    Hello Sir,

    Thank you all for replying, I think I solved my problem by following your

    advice. My solution is as follows :

    hiSetBindkey("Command Interpreter" "Ctrl<Key>s" "deIconify_schematic() ")

    procedudre (deIconify_schematic()

    cv=geGetEditCellView()

    hiDeiconifyWindow(geGetCellViewWindow(cv))

    hiRaiseWindow(geGetCellViewWindow(cv))

    )

     

    It is working, I will try tomorrow about  Lawrence suggestion.

     

    Thank you very much,

    Marbs 

     

     

     

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 15 years ago

    Hi Marbs,

    No point in using geGetEditCellView() and then using geGetCellViewWindow() to get the window id. Simpler to just directly use hiGetCurrentWindow() - e.g. hiRaiseWindow(hiGetCurrentWindow())

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • skillUser
    skillUser over 15 years ago

    Hi Marbs,

    I think that this solution will only work if the schematic cellview happened to be the current cellview window. Since there can be only one current cellview window, I would expect it to be another window, other than the hidden or iconified schematic that you are trying to pop up.  In other words, if the schematic window is "buried" or iconified and you are working with layout or other graphical windows, one of these will likely be current which would render the above code functionally incorrect (it won't specifically raise the schematic, just whichever window is current).

    Good luck looking at my suggestion, I think it will better solve the problem.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information