LOGIN / SIGN UP

#190 right-click and middle-click on titlebar buttons

Reported by: marin Assigned to: pekdon
Phase: release-0.1.11 Component: configuration
Type: enhancement Status: closed
Priority: 1: Very high
Watchers:

Description

i would appreciate very much if there was an option that would controll pressing individual title buttons. it would allow vertical an horizontal maximization of windows by respectively clicking the maximize titlebar button with right and middle mouse click.

mockup configuration:

FrameButtons {

  Maximize {
    ButtonRelease = "2" { Actions = "Toggle Maximized True False" }
    ButtonRelease = "3" { Actions = "Toggle Maximized False True" }
  }
  Close {
    ButtonRelease = "Mod4 1" { Actions = "Kill" }
  }

}

2010-02-19

17:43:34

Closing this one, for 0.2.X maybe action configuration should be external to the theme.

17:43:33 to release-0.1.11
17:43:33 to configuration
17:43:19

No problem :-)

17:43:18 changed from new to closed

2010-01-22

00:18:46

I apologize for this premature write up. The use of the titlebar buttons is already programable - but within the theme files:

...; PDecor {

    ...
    Decor = "Default" {
        Title {
            ....
            Buttons {
                ....    
                Right {
                    ...
                }
                Right {
                     ...
                     Button = "1" { Actions = "Toggle Maximized 1 1" }

Button = "2" { Actions = "Toggle Maximized 1 0" } Button = "3" { Actions = "Toggle Maximized 0 1" }

        	}
                ....
            }
            ....
        }
        ....
    }    
    ....

}