Questions tagged [minimize]

To minimize is to replace one object with another object that can restore the original when selected.

In a graphical interface, to minimize is to replace one object with another, less obtrusive object that can restore the original when selected. The original object is often a window; the minimized form is often an iconic button located in a system dock, tray or task bar.

849 questions
11
votes
4 answers

Custom window style with minimize animation

I wanted to have a customized window so followed a few tutorials which enable this by setting the window style to none, and then adding the title-bar/restore/minimize/close buttons yourself. The minimize is achieved by simply handling the click…
pastillman
  • 1,104
  • 2
  • 16
  • 27
11
votes
2 answers

Minimize / Maximize div's with jQuery

I basically want to minimise some div's . Instead of using "-" and "+", I want to use some symbols (from font-awesome) to minimise and maximise the div's. My question concerning this; how can I insert the classes of the icons in this piece of code?…
user2310429
10
votes
3 answers

WPF Minimize on Taskbar Click

I have a WPF application that by stakeholder requirement must have a WindowStyle="None", ResizeMode="NoResize" and AllowTransparency="True". I know that by not using the Windows chrome, you have to re-implement many of the OS window-handling…
sidney.andrews
  • 5,146
  • 3
  • 23
  • 29
10
votes
4 answers

Code for minimizing application window in Mac?

I'm wondering whether there is a way to write code for Mac OS 10.5 which will minimize and restore a window. What language would it be in? Could someone please give me an example or direct me to documentation on Apple's developer site I should look…
Vivek Subramanian
  • 1,174
  • 2
  • 17
  • 31
9
votes
3 answers

Is there a javascript/css compressor plugin for visual studio?

I'm looking for a visual studio plugin with the following functionality: On building the project or executing the tool, the plugin looks for all *.js and *.css files in your project and compresses/minimizes them into *.min.js and *.min.css…
Thomas Stock
  • 10,927
  • 14
  • 62
  • 79
9
votes
1 answer

Minimize activity on back key press

OnBack Key press i want to minimize the application, How can i do this??? public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { //Here i want to put minimize code.. pls give me this…
Sandeep Kumar P K
  • 7,412
  • 6
  • 36
  • 40
9
votes
4 answers

Binding the "WindowState" property of a window in WPF using MVVM

I bound the "WindowState" property of my main window to my ViewModel in order to change the state of the window by a command, but the first time I minimize the window it minimizes like a worksheet does in an Excel file. Is there a work around for…
Nick O
  • 3,716
  • 6
  • 38
  • 50
9
votes
1 answer

Does Firefox stop running JavaScript when minimized (longpolling)?

I have a longpoll running but when I open a new tab in Firefox, or minimize the browser the longpoll seems to time out!? However if I leave the tab selected, or make a new dedicated window with Firefox open it won't time out. Does anyone have any…
pipinghot
  • 91
  • 2
9
votes
3 answers

Delphi - Minimize & Restore frees up memory?

I have been a dabbling into delphi off and on for years and I have always wondered why does minimizing and restoring an application cause it to use less memory ? As an example I am using delphi 7 and I create a new project with nothing on it but the…
dave
  • 93
  • 3
9
votes
3 answers

Eclipse Juno red minimize and maximize buttons on Linux

I'm running Eclipse Juno 4.2.0 on Linux with Gtk version 1.2.10 and I'm having a following graphics "bug" in the GUI: All the minimize and maximize buttons have a red background colour. In other words, minimize and maximize icons are inside little…
8
votes
1 answer

RegEx to minimize CSS

I have a strait forward aggregator/minimizer/cacher I've written in node.js. It works quite well now. I am however wondering if there is any way to improve my minimizing regex calls. Some comments are not striped from the CSS entirely, and I notice…
Spot
  • 7,962
  • 9
  • 46
  • 55
8
votes
3 answers

How to detect when an Android application is minimized?

How to detect when an Android app goes to the background? onPause() or onUserLeaveHint() works but are also called when the orientation is changed or another activity is presented.
Agshin Huseynov
  • 170
  • 3
  • 13
8
votes
4 answers

IE is randomly minimizing when a link is clicked

I have the bizarre problem. When I click on a link in IE7 the window minimizes. It seems to only be a subset of the links on the page. It also doesn't consistently happen with the same link and differs from computer to computer. example link…
alumb
  • 4,401
  • 8
  • 42
  • 52
8
votes
1 answer

How to use an HTML minifier with underscore templates

I have some templates for my frontend code, like:
{{ title }}
{% if (content) { %} {{ content…
8
votes
3 answers

Minimize python distribution size

The hindrance we have to ship python is the large size of the standard library. Is there a minimal python distribution or an easy way to pick and choose what we want from the standard library? The platform is linux.
user282368
  • 83
  • 1
  • 4
1 2
3
56 57