titlebar-action

0.1.0 • Public • Published

titlebar-action

Retrieves the type of action which should take place when the user double clicks the titlebar of an active window.

APIs

All of the APIs expose a Node.js style callback as the only argument, and return a Promise - so you get the best of both worlds.

titlebarAction(Function callback) Promise<boolean>

import titlebarAction from 'titlebar-action';
 
titlebarAction((err, action) => {
  console.log(action); // 'Minimize', 'Maximize' or 'None'
});

titlebarAction.isMinimize(Function callback) Promise<boolean>

titlebarAction.isMaximize(Function callback) Promise<boolean>

titlebarAction.isZoom(Function callback) Promise<boolean>

titlebarAction.isDisabled(Function callback) Promise<boolean>

License

MIT

Dependents (0)

Package Sidebar

Install

npm i titlebar-action

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • jacobmarshall