1# -*- coding: utf-8 -*-
2# Maximize Windows Plugin for Eye of GNOME
3# Copyright (C) 2015 Felix Riemann <friemann@gnome.org>
4#
5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License
7# as published by the Free Software Foundation; either version 2
8# of the License, or (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19from gi.repository import GObject, Eog
20
21
22class MaximizeWindows(GObject.Object, Eog.WindowActivatable):
23    """Plugin causing new EogWindows to open maximized"""
24
25    window = GObject.property(type=Eog.Window)
26
27    def __init__(self):
28        super(MaximizeWindows, self).__init__()
29
30    def do_activate(self):
31        """Maximize each window this plugin is activated for"""
32        self.window.maximize()
33
34    def do_deactivate(self):
35        """Does nothing on deactivation"""
36        pass
37