KiCad PCB EDA Suite
Loading...
Searching...
No Matches
gtk/environment.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 Ian McInerney <Ian.S.McInerney at ieee.org>
5 * Copyright (C) 2020-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <glib.h>
22#include <gio/gio.h>
24#include <wx/filename.h>
25#include <wx/utils.h>
26
27
29{
30 // Disable proxy menu in Unity window manager. Only usual menubar works with
31 // wxWidgets (at least <= 3.1). When the proxy menu menubar is enable, some
32 // important things for us do not work: menuitems UI events and shortcuts.
33 wxString wm;
34
35 if( wxGetEnv( wxT( "XDG_CURRENT_DESKTOP" ), &wm ) && wm.CmpNoCase( wxT( "Unity" ) ) == 0 )
36 wxSetEnv ( wxT("UBUNTU_MENUPROXY" ), wxT( "0" ) );
37
38 // Force the use of X11 backend (or wayland-x11 compatibility layer). This is
39 // required until wxWidgets supports the Wayland compositors
40 wxSetEnv( wxT( "GDK_BACKEND" ), wxT( "x11" ) );
41
42 // Set GTK2-style input instead of xinput2. This disables touchscreen and smooth
43 // scrolling. It's needed to ensure that we are not getting multiple mouse scroll
44 // events.
45 wxSetEnv( wxT( "GDK_CORE_DEVICE_EVENTS" ), wxT( "1" ) );
46}
47
48
49bool KIPLATFORM::ENV::MoveToTrash( const wxString& aPath, wxString& aError )
50{
51 GError* err = nullptr;
52 GFile* file = g_file_new_for_path( aPath.fn_str() );
53
54 bool retVal = g_file_trash( file, nullptr, &err );
55
56 // Extract the error string if the operation failed
57 if( !retVal && err )
58 aError = err->message;
59
60 g_clear_error( &err );
61 g_object_unref( file );
62
63 return retVal;
64}
65
66
67bool KIPLATFORM::ENV::IsNetworkPath( const wxString& aPath )
68{
69 // placeholder, we "nerf" behavior if its a network path so return false by default
70 return false;
71}
72
73
75{
76 wxString docsPath = g_get_user_data_dir();
77
78 if( docsPath.IsEmpty() )
79 {
80 wxFileName fallback;
81
82 fallback.AssignDir( g_get_home_dir() );
83 fallback.AppendDir( wxT( ".local" ) );
84 fallback.AppendDir( wxT( "share" ) );
85 fallback.MakeAbsolute();
86
87 docsPath = fallback.GetFullPath();
88 }
89
90 return docsPath;
91}
92
93
95{
96 return g_get_user_config_dir();
97}
98
99
101{
102 return g_get_user_cache_dir();
103}
104
105
106bool KIPLATFORM::ENV::GetSystemProxyConfig( const wxString& aURL, PROXY_CONFIG& aCfg )
107{
108 return false;
109}
110
111
112bool KIPLATFORM::ENV::VerifyFileSignature( const wxString& aPath )
113{
114 return true;
115}
bool IsNetworkPath(const wxString &aPath)
Determines if a given path is a network shared file apth On Windows for example, any form of path is ...
void Init()
Perform environment initialization tasks.
bool GetSystemProxyConfig(const wxString &aURL, PROXY_CONFIG &aCfg)
Retrieves platform level proxying requirements to reach the given url.
wxString GetDocumentsPath()
Retrieves the operating system specific path for a user's documents.
bool MoveToTrash(const wxString &aPath, wxString &aError)
Move the specified file/directory to the trash bin/recycle bin.
wxString GetUserConfigPath()
Retrieves the operating system specific path for a user's configuration store.
wxString GetUserCachePath()
Retrieves the operating system specific path for user's application cache.
bool VerifyFileSignature(const wxString &aPath)
Validates the code signing signature of a given file This is most likely only ever going to be applic...