本文整理汇总了Golang中github.com/BurntSushi/xgbutil/xevent.ReplayPointer函数的典型用法代码示例。如果您正苦于以下问题:Golang ReplayPointer函数的具体用法?Golang ReplayPointer怎么用?Golang ReplayPointer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了ReplayPointer函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: Run
func (cmd Focus) Run() gribble.Value {
return syncRun(func() gribble.Value {
return withClient(cmd.Client, func(c *xclient.Client) {
if c == nil {
focus.Root()
// Use the mouse coordinates to find which workspace it was
// clicked in. If a workspace can be found (i.e., no clicks in
// dead areas), then activate it.
xc, rw := wm.X.Conn(), wm.X.RootWin()
qp, err := xproto.QueryPointer(xc, rw).Reply()
if err != nil {
logger.Warning.Printf("Could not query pointer: %s", err)
return
}
geom := xrect.New(int(qp.RootX), int(qp.RootY), 1, 1)
if wrk := wm.Heads.FindMostOverlap(geom); wrk != nil {
wm.SetWorkspace(wrk, false)
}
} else {
c.Focus()
xevent.ReplayPointer(wm.X)
}
})
})
}
开发者ID:BurntSushi,项目名称:wingo,代码行数:27,代码来源:commands.go
示例2: commandFun
func (mcmd mouseCommand) commandFun() func(c *client) {
tryShellFun := commandShellFun(mcmd.cmd)
if tryShellFun != nil {
return func(c *client) {
tryShellFun()
xevent.ReplayPointer(X)
}
}
switch mcmd.cmd {
case "FocusRaise":
return func(c *client) {
focus.Focus(c)
stack.Raise(c)
xevent.ReplayPointer(X)
}
case "Focus":
return func(c *client) {
focus.Focus(c)
xevent.ReplayPointer(X)
}
case "Raise":
return func(c *client) {
stack.Raise(c)
xevent.ReplayPointer(X)
}
case "Close":
return func(c *client) {
c.Close()
}
case "MaximizeToggle":
return func(c *client) {
// c.MaximizeToggle()
}
case "Minimize":
return func(c *client) {
c.workspace.IconifyToggle(c)
}
}
logger.Warning.Printf("Undefined mouse command: '%s'", mcmd.cmd)
return nil
}
开发者ID:dlintw,项目名称:wingo,代码行数:44,代码来源:command_mouse.go
示例3: setup
func (mcmd mouseCommand) setup(c Client, wid xproto.Window) {
// Check if this command is a drag... If it is, it needs special attention.
if mcmd.cmdName == "MouseMove" {
setupMoveDrag(c, wid, mcmd.buttonStr, true)
return
}
if mcmd.cmdName == "MouseResize" {
direction, err := cmdHacks.MouseResizeDirection(mcmd.cmdStr)
if err != nil {
logger.Warning.Println("Could not setup MouseResize: %s", err)
return
}
setupResizeDrag(c, wid, mcmd.buttonStr, true, strToDirection(direction))
return
}
// If we're putting this on the client or frame window, we need to propagate
// the events (i.e., grab synchronously).
// Otherwise, we don't need to grab at all!
run := func() {
go func() {
mouseClientLock.Lock()
defer mouseClientLock.Unlock()
MouseClientClicked = c.Id()
_, err := gribbleEnv.Run(mcmd.cmdStr)
if err != nil {
logger.Warning.Println(err)
}
MouseClientClicked = 0
}()
}
if wid == c.Id() || (c.Frame() != nil && wid == c.Frame().Parent().Id) {
if mcmd.down {
f := func() {
run()
xevent.ReplayPointer(X)
}
mcmd.attach(wid, f, true, true)
} else { // we have to handle release grabs specially!
mcmd.attachGrabRelease(wid, run)
}
} else {
mcmd.attach(wid, run, false, false)
}
}
开发者ID:pascience,项目名称:foci,代码行数:46,代码来源:bindings_mouse.go
注:本文中的github.com/BurntSushi/xgbutil/xevent.ReplayPointer函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论