summaryrefslogtreecommitdiffstats
path: root/gui/Platform_X11.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-02-09 01:51:14 +0100
committerPetr Mrázek <peterix@gmail.com>2015-04-12 20:57:18 +0200
commitdb877ba121ff87a4e029daf8555d85dfef45993a (patch)
tree7673f83c404b3883f0a4fcf6b492f0c4125c293c /gui/Platform_X11.cpp
parent4730f54df7edf4775dfddf45f77c60edd86c32d9 (diff)
downloadMultiMC-db877ba121ff87a4e029daf8555d85dfef45993a.tar
MultiMC-db877ba121ff87a4e029daf8555d85dfef45993a.tar.gz
MultiMC-db877ba121ff87a4e029daf8555d85dfef45993a.tar.lz
MultiMC-db877ba121ff87a4e029daf8555d85dfef45993a.tar.xz
MultiMC-db877ba121ff87a4e029daf8555d85dfef45993a.zip
NOISSUE move everything.
Diffstat (limited to 'gui/Platform_X11.cpp')
-rw-r--r--gui/Platform_X11.cpp62
1 files changed, 0 insertions, 62 deletions
diff --git a/gui/Platform_X11.cpp b/gui/Platform_X11.cpp
deleted file mode 100644
index b6a6cbce..00000000
--- a/gui/Platform_X11.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-/* Copyright 2013-2015 MultiMC Contributors
- *
- * Authors: Orochimarufan <orochimarufan.x3@gmail.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <gui/Platform.h>
-#include <QtX11Extras/QX11Info>
-#include <xcb/xcb.h>
-
-static QByteArray WM_CLASS = "MultiMC5\0MultiMC5";
-
-template <typename... ArgTypes, typename... ArgTypes2>
-static inline unsigned int XcbCallVoid(xcb_void_cookie_t (*func)(xcb_connection_t *, ArgTypes...), ArgTypes2... args...)
-{
- return func(QX11Info::connection(), args...).sequence;
-}
-
-static void getAtoms(size_t n, xcb_atom_t *atoms, const char *const names[], bool create)
-{
- xcb_connection_t *conn = QX11Info::connection();
- xcb_intern_atom_cookie_t *cookies = (xcb_intern_atom_cookie_t *)malloc(sizeof(xcb_intern_atom_cookie_t) * 2);
- for (size_t i = 0; i < n; ++i)
- cookies[i] = xcb_intern_atom(conn, create, strlen(names[i]), names[i]);
- memset(atoms, 0, sizeof(xcb_atom_t) * n);
- for (size_t i = 0; i < n; ++i)
- {
- xcb_intern_atom_reply_t *r = xcb_intern_atom_reply(conn, cookies[i], 0);
- if (r)
- {
- atoms[i] = r->atom;
- free(r);
- }
- }
- free(cookies);
-}
-
-static inline xcb_atom_t getAtom(const char *name, bool create=false)
-{
- xcb_atom_t atom;
- getAtoms(1, &atom, &name, create);
- return atom;
-}
-
-void MultiMCPlatform::fixWM_CLASS(QWidget *widget)
-{
- static const xcb_atom_t atom = getAtom("WM_CLASS");
- XcbCallVoid(xcb_change_property, XCB_PROP_MODE_REPLACE,
- widget->winId(), atom, XCB_ATOM_STRING, 8, WM_CLASS.count(),
- WM_CLASS.constData());
-}