2 Util for external clipboard.
4 Copyright (C) 2009, 2011
5 The Free Software Foundation, Inc.
8 Ilia Maslakov <il.smind@gmail.com>, 2010.
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #include "lib/global.h"
32 #include "lib/fileloc.h"
33 #include "lib/mcconfig.h"
35 #include "lib/event.h"
37 #include "lib/vfs/vfs.h"
40 #include "src/execute.h"
42 #include "clipboard.h"
44 /*** global variables ****************************************************************************/
46 /* path to X clipboard utility */
47 char *clipboard_store_path
= NULL
;
48 char *clipboard_paste_path
= NULL
;
50 /*** file scope macro definitions ****************************************************************/
52 /*** file scope type declarations ****************************************************************/
54 /*** file scope variables ************************************************************************/
56 /*** file scope functions ************************************************************************/
57 /* --------------------------------------------------------------------------------------------- */
59 /* --------------------------------------------------------------------------------------------- */
60 /*** public functions ****************************************************************************/
61 /* --------------------------------------------------------------------------------------------- */
65 clipboard_file_to_ext_clip (const gchar
* event_group_name
, const gchar
* event_name
,
66 gpointer init_data
, gpointer data
)
70 const char *d
= getenv ("DISPLAY");
72 (void) event_group_name
;
77 if (d
== NULL
|| clipboard_store_path
== NULL
|| clipboard_store_path
[0] == '\0')
80 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
81 cmd
= g_strconcat (clipboard_store_path
, " ", tmp
, " 2>/dev/null", (char *) NULL
);
84 res
= my_system (EXECUTE_AS_SHELL
, shell
, cmd
);
91 /* --------------------------------------------------------------------------------------------- */
95 clipboard_file_from_ext_clip (const gchar
* event_group_name
, const gchar
* event_name
,
96 gpointer init_data
, gpointer data
)
100 const char *d
= getenv ("DISPLAY");
102 (void) event_group_name
;
107 if (d
== NULL
|| clipboard_paste_path
== NULL
|| clipboard_paste_path
[0] == '\0')
110 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
111 cmd
= g_strconcat (clipboard_paste_path
, " > ", tmp
, " 2>/dev/null", (char *) NULL
);
114 res
= my_system (EXECUTE_AS_SHELL
, shell
, cmd
);
121 /* --------------------------------------------------------------------------------------------- */
125 clipboard_text_to_file (const gchar
* event_group_name
, const gchar
* event_name
,
126 gpointer init_data
, gpointer data
)
132 const char *text
= (const char *) data
;
134 (void) event_group_name
;
141 fname
= mc_config_get_full_path (EDIT_CLIP_FILE
);
142 file
= mc_open (fname
, O_CREAT
| O_WRONLY
| O_TRUNC
,
143 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
| O_BINARY
);
149 str_len
= strlen (text
);
150 ret
= mc_write (file
, (char *) text
, str_len
);
155 /* --------------------------------------------------------------------------------------------- */
159 clipboard_text_from_file (const gchar
* event_group_name
, const gchar
* event_name
,
160 gpointer init_data
, gpointer data
)
165 gboolean first
= TRUE
;
166 ev_clipboard_text_from_file_t
*event_data
= (ev_clipboard_text_from_file_t
*) data
;
168 (void) event_group_name
;
172 fname
= mc_config_get_full_path (EDIT_CLIP_FILE
);
173 f
= fopen (fname
, "r");
178 event_data
->ret
= FALSE
;
182 *(event_data
->text
) = NULL
;
184 while (fgets (buf
, sizeof (buf
), f
))
191 if (buf
[len
- 1] == '\n')
197 *(event_data
->text
) = g_strdup (buf
);
201 /* remove \n on EOL */
204 tmp
= g_strconcat (*(event_data
->text
), " ", buf
, (char *) NULL
);
205 g_free (*(event_data
->text
));
206 *(event_data
->text
) = tmp
;
212 event_data
->ret
= (*(event_data
->text
) != NULL
);
216 /* --------------------------------------------------------------------------------------------- */