aboutsummaryrefslogtreecommitdiff
path: root/bin/arctica-browser
blob: e99d2b530abad46dd4e51d3696f5b209c6e2db48 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/perl -X -T

################################################################################
#          _____ _
#         |_   _| |_  ___
#           | | | ' \/ -_)
#           |_| |_||_\___|
#                   _   _             ____            _           _
#    / \   _ __ ___| |_(_) ___ __ _  |  _ \ _ __ ___ (_) ___  ___| |_
#   / _ \ | '__/ __| __| |/ __/ _` | | |_) | '__/ _ \| |/ _ \/ __| __|
#  / ___ \| | | (__| |_| | (_| (_| | |  __/| | | (_) | |  __/ (__| |_
# /_/   \_\_|  \___|\__|_|\___\__,_| |_|   |_|  \___// |\___|\___|\__|
#                                                  |__/
#          The Arctica Modular Remote Computing Framework
#
################################################################################
#
# Copyright (C) 2015-2017 The Arctica Project
# http://http://arctica-project.org/
#
# This code is licensed under AGPL-3+.
#
# AGPL-3+
# -------
# This programm is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This programm is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Copyright (C) 2015-2017 Guangzhou Nianguan Electronics Technology Co.Ltd.
#                         <opensource@gznianguan.com>
# Copyright (C) 2015-2017 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
#
#
# Note: As this project is licensed under AGPL-3+, all linked-in
#       shared libraries derived from the Arctica Project must be
#       considered as licensed under AGPL-3+ in this context, too
#       (they are normally dual licensed under GPL-2 or AGPL-3+).
#
#       Please consider this, when offering a modified version of
#       Arctica Browser as a serivce. To comply with AGPL-3+, you have
#       to make the modified source code of all components of Arctica
#       Browser available to your users.
#
################################################################################

use strict;
use Data::Dumper;
use Arctica::Core::eventInit qw(genARandom BugOUT);
use Arctica::Telekinesis::Application::Gtk3;
my $ACO = Arctica::Core::eventInit->new({
	app_name=>'telekinesis-test-app',
	app_class =>'tekiapp',
	app_version=>'0.0.1.1'});



my $TeKiGtk3 = Arctica::Telekinesis::Application::Gtk3->new($ACO,{
		services => {
			multimedia => {
				conf => {
					files_only => 1,
				},
			},
		},
	});

LoadCSS();
my $main_window = Gtk3::Window->new('toplevel');
$main_window->signal_connect(destroy => sub {Gtk3->main_quit();});
$main_window->set_title('TEST WINDOW');

my $window_id = $TeKiGtk3->add_window($main_window);
my $target_id = $TeKiGtk3->new_target($window_id,"multimedia");
$TeKiGtk3->{'targets'}{$target_id}{'tmplnkid'} = "null";#TMP GARBAGE


my $vBox = Gtk3::Box->new( 'vertical', 0 );
$main_window->add($vBox);
$vBox->show();


$vBox->pack_start($TeKiGtk3->get_widget($target_id), 1, 1, 0 );


$main_window->set_border_width(0);
$main_window->resize(640,480);
$main_window->show_all();

# We'll wan't to start this within the AppGtk3 thingie... but for now it can stay out here...
my $timeout = Glib::Timeout->add(50, sub {$TeKiGtk3->check_n_send();return 1;});
my $timeout2 = Glib::Timeout->add(900, sub {
	my ($os_x,$os_y) = $main_window->get_position;
	my $x = ($os_x+1);
	my $y = ($os_y+1);
	$main_window->move($x,$y);
	return 0;
});
my $timeout3 = Glib::Timeout->add(1000, sub {
	my ($os_x,$os_y) = $main_window->get_position;

	my $x = ($os_x-1);
	my $y = ($os_y-1);
	$main_window->move($x,$y);

	return 0;
});

$ACO->{'Glib'}{'MainLoop'}->run;


sub LoadCSS {
	my $Gtk3_CSS_Provider = Gtk3::CssProvider->new;
	my $Display = Gtk3::Gdk::Display::get_default();
	my $Screen = $Display->get_default_screen;
	$Gtk3_CSS_Provider->load_from_data ([map ord, split //,"GtkSocket{
		background-color: #000000;
		background-repeat: no-repeat;
		background-position: center;
		background-image: url('/usr/share/arctica-browser/eyesore_t.png');
	}"]);

	Gtk3::StyleContext::add_provider_for_screen( $Screen, $Gtk3_CSS_Provider, Gtk3::STYLE_PROVIDER_PRIORITY_USER);
}