Author Topic: Workspace name in title bar?  (Read 1435 times)

jporkkahtc

  • Senior Community Member
  • Posts: 2620
  • Hero Points: 210
  • Text
Workspace name in title bar?
« on: December 19, 2019, 06:47:35 PM »
Is there a way to get the workspace name in the main title bar?
When I have multiple instances of Slick open, its hard to tell the difference when alt-tabbing

Digging thru options, I couldn't find anything to let me set what is displayed in the main title bar :-(

Graeme

  • Senior Community Member
  • Posts: 2796
  • Hero Points: 347
Re: Workspace name in title bar?
« Reply #1 on: December 20, 2019, 12:07:24 PM »

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6866
  • Hero Points: 528
Re: Workspace name in title bar?
« Reply #2 on: December 20, 2019, 02:04:32 PM »
Setting VSOPTION_APPLICATION_CAPTION_FLAGS definitely still works. I just tried it to make sure. the 1 flag is for displaying the workspace name. 2 flag is for displaying the project name.

Code: [Select]
_command void setappcapflag ( int flag=3 )
{
   _default_option(VSOPTION_APPLICATION_CAPTION_FLAGS,flag);
   _config_modify_flags(CFGMODIFY_OPTION);
}

jporkkahtc

  • Senior Community Member
  • Posts: 2620
  • Hero Points: 210
  • Text
Re: Workspace name in title bar?
« Reply #3 on: December 20, 2019, 10:45:13 PM »
Cool, that works.

How about controlling the way the buffer name is displayed in the title bar?
Seems like there used to be options for this, but I can't find them.

Clark seemed to imply this option was going in: https://community.slickedit.com/index.php/topic,1251.msg5295.html#msg5295