KiCad PCB EDA Suite
Loading...
Searching...
No Matches
unix/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#if !wxUSE_GLCANVAS_EGL
39 // Force the use of X11 backend (or wayland-x11 compatibility layer). This is
40 // required until wxWidgets supports the Wayland compositors
41 wxSetEnv( wxT( "GDK_BACKEND" ), wxT( "x11" ) );
42#endif
43
44 // Set GTK2-style input instead of xinput2. This disables touchscreen and smooth
45 // scrolling. It's needed to ensure that we are not getting multiple mouse scroll
46 // events.
47 wxSetEnv( wxT( "GDK_CORE_DEVICE_EVENTS" ), wxT( "1" ) );
48}
49
50
51bool KIPLATFORM::ENV::MoveToTrash( const wxString& aPath, wxString& aError )
52{
53 GError* err = nullptr;
54 GFile* file = g_file_new_for_path( aPath.fn_str() );
55
56 bool retVal = g_file_trash( file, nullptr, &err );
57
58 // Extract the error string if the operation failed
59 if( !retVal && err )
60 aError = err->message;
61
62 g_clear_error( &err );
63 g_object_unref( file );
64
65 return retVal;
66}
67
68
69bool KIPLATFORM::ENV::IsNetworkPath( const wxString& aPath )
70{
71 // placeholder, we "nerf" behavior if its a network path so return false by default
72 return false;
73}
74
75
77{
78 wxString docsPath = g_get_user_data_dir();
79
80 if( docsPath.IsEmpty() )
81 {
82 wxFileName fallback;
83
84 fallback.AssignDir( g_get_home_dir() );
85 fallback.AppendDir( wxT( ".local" ) );
86 fallback.AppendDir( wxT( "share" ) );
87 fallback.MakeAbsolute();
88
89 docsPath = fallback.GetFullPath();
90 }
91
92 return docsPath;
93}
94
95
97{
98 return g_get_user_config_dir();
99}
100
101
103{
104 return g_get_user_data_dir();
105}
106
107
109{
110 return g_get_user_data_dir();
111}
112
113
115{
116 return g_get_user_cache_dir();
117}
118
119
120bool KIPLATFORM::ENV::GetSystemProxyConfig( const wxString& aURL, PROXY_CONFIG& aCfg )
121{
122 return false;
123}
124
125
126bool KIPLATFORM::ENV::VerifyFileSignature( const wxString& aPath )
127{
128 return true;
129}
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 GetUserDataPath()
Retrieves the operating system specific path for a user's data store.
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 GetUserLocalDataPath()
Retrieves the operating system specific path for a user's local data store.
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...