Questions tagged [menubar]

A menu bar is a region of a screen or application interface where drop down menus are displayed

a horizontal bar, typically located at the top of the screen below the title bar, containing drop-down menus. MenuBar Looks like

1020 questions
4
votes
1 answer

How to make an auto hiding menu bar with Qt4

I am trying to make a Qt application which has an auto hiding menu bar. How can i do that?
Olcay Ertaş
  • 5,987
  • 8
  • 76
  • 112
4
votes
1 answer

Requesting focus on a JavaFX stage doesn't change the macOS top left menu bar title

When I try to request focus (I'm on macOS Mojave 10.14.2) when the user clicks a 'show' button from the tray icon menu, it doesn't change the menu bar on the top left corner (e.g. Chrome -> java), but at least it brings to front. It doesn't appear…
Matias
  • 459
  • 1
  • 4
  • 14
4
votes
2 answers

Making a custom menubar in Qt

I'm developing a mobile app using Qt for s60 v5 and symbain 3. Now I want a menubar at bottom of the screen. It should have OPtions button, Exit button. And an additional button in between them. How can this be done? I tried a few things but…
Aniket Awati
  • 1,381
  • 3
  • 13
  • 21
4
votes
1 answer

tabItem cannot show the content when more functions in menuItem using shiny and shinydashboard

I am learning shiny and shinydashboard. My code is like this: library(shiny) library(shinydashboard) library(DT) library(RODBC) library(stringr) library(dplyr) ch<-odbcConnect('B1P HANA',uid='fchen4',pwd='XUEqin0312') sidebar <- dashboardSidebar( …
Feng Chen
  • 2,139
  • 4
  • 33
  • 62
4
votes
0 answers

How to implement JavaFX MacOS app with system menu bar and handle desktop events.

I'm struggling to implement the application menu bar correctly in a JavaFX application that runs on MacOS. As of JDK9, is seems that the supported way to set up the application menu correctly on a Mac is to: 1) package the app with javapackager…
4
votes
1 answer

How to fix Titanium's broken menu bar on mac osx

I started developing an desktop-app with Titanium Appcelerator for mac. Everything is fine except the broken menu bar. So I launch the app and get this weird looking menu bar, where every item is placed two times. I didn't create a menu, it's a…
eltorrero
  • 307
  • 1
  • 2
  • 6
4
votes
1 answer

How would I make a draggable Menubar icon for Mac OS X

I am in the process of writing a menubar icon for an app i'm developing. However the NSStatusBar class does not have a method which would make the icon draggable, via cmd+left mouse drag. How do you make your menubar icon draggable with Objective-C…
Brock Woolf
  • 46,656
  • 50
  • 121
  • 144
4
votes
1 answer

How to add radiobuttons to a submenu in Tkinter

I want to have a set of two radiobuttons "BBC" and "CNN" in a submenu named "Channel" in my GUI. I tried to use the add_radiobutton method, but the radiobuttons appear under the submenu, while I want them to behave as attributes for the "Channel"…
AD WAN
  • 1,414
  • 2
  • 15
  • 28
4
votes
2 answers

How can I make my application's touch bar always visible on macOS?

I am making a macOS menu bar application which displays a fullscreen overlay. The user is able to control the opacity of this overlay via a slider in the menu bar. I wish to move these controls to the touch bar, because the application is used for…
jameshfisher
  • 34,029
  • 31
  • 121
  • 167
4
votes
2 answers

Programatically enable/disable menuBar buttons in Flex 4

I have the following XML in my Flex4 (AIR) project that defines the start of my menu interface:
Hamid
  • 4,410
  • 10
  • 43
  • 72
4
votes
2 answers

Angular2RC4-Primeng Menubar routerlink does not go to my routes after click

I am using Menubar from primeng for my app. I got the Menu showing, but I wasn't able to make the routing working in my app. I set specific link's route say "reports/89", but when I click the menu corresponding to the link it tries to go to the…
Afi
  • 187
  • 2
  • 10
4
votes
1 answer

How do I add a horizontal top menu bar to a MediaWiki site without hacking the skin?

I want my MediaWiki site to have (either in addition to, or instead of, the sidebar) a bar of links at the top of the site, visible on every page. Requirements To minimize future maintenance burden, my requirements are: No modifications to core,…
ctrueden
  • 6,751
  • 3
  • 37
  • 69
4
votes
1 answer

OSX Java System Tray (menu bar)

Does anyone know of a way to have an application (Java on OSX) run in a system tray state but when a window is visible on the screen to have a dock icon? Currently I have a trade off between having the app running in the tray but also shown in the…
user445136
  • 41
  • 2
4
votes
0 answers

Alt Gr key gives menu focus when I don't expect it to

Several keyboards have a Alt Gr key. On my Swedish keyboard layout, to enter the [ character I have to press Alt Gr + 8 (or Ctrl + Alt + 8). If I were to input this character twice in a JavaFX TextField, where the application also has a MenuBar, the…
Simon Forsberg
  • 13,086
  • 10
  • 64
  • 108
4
votes
2 answers

How to stick the menubar at the top of the window PyGTK

How can i stick the menubar at the top of the window? I'm using a Gtk.VBox and i added Gtk.MenuBar inside. I'm using Gtk3 The code source : http://pastebin.com/YHZQLzZg Thanks