summaryrefslogtreecommitdiffstats
path: root/tools/gtk_clipboard_dump/gtk_clipboard_dump.cc
blob: f0f6016141c8b16cc152023072ff268cce9e2647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <gtk/gtk.h>
#include <stdio.h>
#include <string.h>

namespace {

void PrintClipboardContents(GtkClipboard* clip) {
  GdkAtom* targets;
  int num_targets = 0;
  gtk_clipboard_wait_for_targets(clip, &targets, &num_targets);

  printf("Available targets:\n---------------\n");

  for (int i = 0; i < num_targets; i++) {
    printf("  [format: %s", gdk_atom_name(targets[i]));
    GtkSelectionData* data = gtk_clipboard_wait_for_contents(clip, targets[i]);
    if (!data) {
      printf("]: NULL\n\n");
      continue;
    }

    printf(" / length: %d / bits %d]: ", data->length, data->format);

    if (strstr(gdk_atom_name(targets[i]), "image")) {
      printf("(image omitted)\n\n");
      continue;
    } else if (strstr(gdk_atom_name(targets[i]), "TIMESTAMP")) {
      // TODO(estade): Print the time stamp in human readable format.
      printf("(time omitted)\n\n");
      continue;
    }

    for (int j = 0; j < data->length; j++) {
      // Output data one byte at a time. Currently wide strings look
      // pretty weird.
      printf("%c", (data->data[j] == 0 ? '_' : data->data[j]));
    }
    printf("\n\n");
  }
}

}

/* Small program to dump the contents of GTK's clipboards to the terminal.
 * Feel free to add to it or improve formatting or whatnot.
 */
int main(int argc, char* argv[]) {
  gtk_init(&argc, &argv);

  printf("Desktop clipboard\n");
  PrintClipboardContents(gtk_clipboard_get(GDK_SELECTION_CLIPBOARD));

  printf("X clipboard\n");
  PrintClipboardContents(gtk_clipboard_get(GDK_SELECTION_PRIMARY));
}