~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to apps/nsplugins/viewer/pluginhost_xembed.h

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 
 
3
  XEmbed plugin embedding support
 
4
 
 
5
  Copyright (c) 2007 Maksim Orlovich <maksim@kde.org>
 
6
 
 
7
  This program is free software; you can redistribute it and/or modify
 
8
  it under the terms of the GNU General Public License as published by
 
9
  the Free Software Foundation; either version 2 of the License, or
 
10
  (at your option) any later version.
 
11
 
 
12
  This program is distributed in the hope that it will be useful,
 
13
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
  GNU General Public License for more details.
 
16
 
 
17
  You should have received a copy of the GNU General Public License
 
18
  along with this program; if not, write to the Free Software
 
19
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
 
 
21
*/
 
22
 
 
23
#ifndef PLUGIN_HOST_XEMBED_H
 
24
#define PLUGIN_HOST_XEMBED_H
 
25
 
 
26
#include "pluginhost.h"
 
27
#include <QX11EmbedContainer>
 
28
 
 
29
class PluginHostXEmbed : public PluginHost
 
30
{
 
31
public:
 
32
    PluginHostXEmbed(NSPluginInstance* plugin);
 
33
    virtual void setupWindow(int winId, int width, int height);
 
34
    virtual void resizePlugin(int clientWinId, int w, int h);
 
35
    virtual ~PluginHostXEmbed();
 
36
private:
 
37
    NSPluginInstance*   _plugin;
 
38
    int                 _winId;
 
39
};
 
40
 
 
41
 
 
42
#endif
 
43
 
 
44
// kate: indent-width 4; replace-tabs on; tab-width 4; space-indent on;