summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt
AgeCommit message (Expand)AuthorFilesLines
2024-04-24qtwayland: update qwaylandintegration patch for 5.15.9Denys Dmytriyenko1-1/+1
2024-02-15qtwayland-config: remove recipeScott Murray2-33/+0
2023-11-04qtbase: enable xkbcommon supportScott Murray1-1/+1
2023-08-01qtwayland: Clean-up and adapt inputContext() patchMarius Vlad7-809/+34
2023-04-28qtwayland: disable local patch that breaks version 5.15.7Denys Dmytriyenko1-2/+3
2023-02-13qtlocation: remove bbappendScott Murray3-62/+0
2022-06-15qtwayland:delete the patch that is no longer usedduerpei1-33/+0
2022-05-02qwaylandwindow-Short-circuit-isExposed: qtwayland resize fixMarius Vlad2-0/+40
2022-03-21Restore Qt compositor cluster demo imageScott Murray1-0/+4
2021-11-03Prepare master for new framework integrationJan-Simon Möller1-1/+0
2021-08-20Convert to new override syntaxScott Murray6-10/+10
2021-06-07qtbase: clean up bbappendScott Murray3-49/+1
2021-02-09qtwayland: Mitigate crash when platforminputcontext library is missingMarius Vlad2-0/+38
2021-02-09qtwayland: Remove unneeded (mostly) xdg-shell related patchesMarius Vlad6-2322/+0
2020-12-17SPEC-3723: restructure meta-agl-demoJan-Simon Moeller28-0/+3370
und-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
{
    "$schema": "ToBeDone",
    "metadata": {
        "label": "sample-standalone-control",
        "info": "Minimal Standalone Controller Config",
        "version": "1.0"
    },
    "onload": [{
            "label": "onload-default",
            "info": "onload initialisation config",
            "actions":
                    {
                        "label": "control-init",
                        "lua": "_Control_Init"
                    }
        }],
    "controls":
            [
                {
                    "label": "Button-1",
                    "actions": {
                        "label": "Action on Button One",
                        "lua": "_Button_Press",
                        "args": {
                            "button": 1
                        }
                    }
                }, {
                    "label": "Button-1",
                    "actions": {
                        "label": "Action on Button Two",
                        "lua": "_Button_Press",
                        "args": {
                            "button": 2
                        }
                    }
                }, {
                    "label": "Button-1",
                    "actions": {
                        "label": "Action on Button Three",
                        "lua": "_Button_Press",
                        "args": {
                            "button": 3
                        }
                    }
                }
            ],
    "events":
            [
                {
                    "label": "Event1",
                    "actions": {
                        "label": "Action Event 1",
                        "lua": "_Event_Received",
                        "args": {
                            "evtname": "xxx"
                        }
                    }
                },
                {
                    "label": "Event2",
                    "actions": {
                        "label": "Action Event 2",
                        "lua": "_Event_Received",
                        "args": {
                            "evtname": "yyy"
                        }
                    }
                }
            ]
}