Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wx Python图像查看器-atfer打开图像文件菜单太紧_Python_User Interface_Uiimageview_Wxpython_Wxwidgets - Fatal编程技术网

Wx Python图像查看器-atfer打开图像文件菜单太紧

Wx Python图像查看器-atfer打开图像文件菜单太紧,python,user-interface,uiimageview,wxpython,wxwidgets,Python,User Interface,Uiimageview,Wxpython,Wxwidgets,我在Ubuntu 12.04上使用Python 2.7和wx 我使用wx用Python编写了一个非常小的图像查看器。一切都很好,但我的应用程序的主窗口的大小有问题 当我打开一张普通大小的图片时,我看到: 这很好 但当我打开另一个文件时,我们可以这样说(BIIIG图形的图像): 我的应用程序窗口有一个错误的宽度,我的意思是看一下它的菜单。。太紧,你甚至看不到一个“编辑”选项正确 如何修复它?我刚开始使用Python中的wx,所以请耐心点:) 我的代码: # -*- coding: utf-8

我在Ubuntu 12.04上使用Python 2.7和wx

我使用wx用Python编写了一个非常小的图像查看器。一切都很好,但我的应用程序的主窗口的大小有问题

当我打开一张普通大小的图片时,我看到:

这很好

但当我打开另一个文件时,我们可以这样说(BIIIG图形的图像):

我的应用程序窗口有一个错误的宽度,我的意思是看一下它的菜单。。太紧,你甚至看不到一个“编辑”选项正确

如何修复它?我刚开始使用Python中的wx,所以请耐心点:)

我的代码:

# -*- coding: utf-8 -*-
#!/usr/bin/env python

import wx
import os

class MyGUIApp(wx.App):

    def __init__(self, redirect=False, filename=None):

        wx.App.__init__(self, redirect, filename)
        self.frame = wx.Frame(None, title='MyGUIApp v0.2')
        self.panel = wx.Panel(self.frame)

        self.filename = ''
        self.dirname = ''
        width, height = wx.DisplaySize()
        self.pictureMaxSize = 500

        img = wx.EmptyImage(self.pictureMaxSize, self.pictureMaxSize)
        self.imageCtrl = wx.StaticBitmap(self.panel, wx.ID_ANY, wx.BitmapFromImage(img))

        self.mainSizer = wx.BoxSizer(wx.VERTICAL)
        self.mainSizer.Add(self.imageCtrl, 0, wx.ALL|wx.CENTER, 5)
        self.panel.SetSizer(self.mainSizer)
        self.mainSizer.Fit(self.frame)

        self.createMenus()  
        self.connectItemsWithEvents()
        self.createKeyboardShortcuts()

        self.frame.SetMenuBar(self.menuBar)
        self.frame.Show()

    def connectItemsWithEvents(self) :
        self.Bind(wx.EVT_MENU, self.openEvent, self.openItem)
        self.Bind(wx.EVT_MENU, self.clearEvent, self.clearItem)

    def createKeyboardShortcuts(self) :
      self.accel_tbl = wx.AcceleratorTable([(wx.ACCEL_CTRL, ord('C'), self.clearItem.GetId()),
                                            (wx.ACCEL_CTRL, ord('O'), self.openItem.GetId()),
                                            ])
      self.frame.SetAcceleratorTable(self.accel_tbl)

    def createMenus(self) :
        self.menuBar = wx.MenuBar()
        self.menuFile = wx.Menu()

        self.menuBar.Append(self.menuFile, '&File')      
        self.openItem = wx.MenuItem(self.menuFile, wx.NewId(), u'&open ...\tCTRL+O')
        #self.openItem.SetBitmap(wx.Bitmap('images/document-open.png'))
        self.menuFile.AppendItem(self.openItem)

        self.menuEdit = wx.Menu()
        self.menuBar.Append(self.menuEdit, '&Edit')
        self.clearItem = wx.MenuItem(self.menuEdit, wx.NewId(), '&Clear\tCTRL+C')
        #self.clearItem.SetBitmap(wx.Bitmap('images/clear.png'))
        self.menuEdit.AppendItem(self.clearItem)


    def openEvent(self, event) :
        openDialog = wx.FileDialog(self.frame, u'Open file', "File", "", "*.*", wx.OPEN)
        if openDialog.ShowModal() == wx.ID_OK :
            self.filename = openDialog.GetFilename()
            self.dirname = openDialog.GetDirectory()
            self.draw(os.path.join(self.dirname, self.filename))
        openDialog.Destroy()

    def clearEvent(self, event) :
        img = wx.EmptyImage(self.pictureMaxSize, self.pictureMaxSize)
        self.imageCtrl = wx.StaticBitmap(self.panel, wx.ID_ANY, wx.BitmapFromImage(img))
        self.imageCtrl.SetBitmap(wx.BitmapFromImage(img))
        self.frame.SetSize((self.pictureMaxSize, self.pictureMaxSize))
        self.filename = ''
        self.dirname = ''

    def draw(self, filename) :
        image_name = filename
        img = wx.Image(filename, wx.BITMAP_TYPE_ANY)
        W = img.GetWidth()
        H = img.GetHeight()
        if W > H:
            NewW = self.pictureMaxSize
            NewH = self.pictureMaxSize * H / W
        else:
            NewH = self.pictureMaxSize
            NewW = self.pictureMaxSize * W / H
        img = img.Scale(NewW,NewH)
        self.imageCtrl.SetBitmap(wx.BitmapFromImage(img))
        self.panel.Refresh()
        self.mainSizer.Fit(self.frame)

if __name__ == '__main__':
    app = MyGUIApp()
    app.MainLoop()

您可以调用self.Frame.SetMinSize(w,h)强制窗口具有合理的最小高度和宽度,但您需要添加滚动条,以便可以看到所有图像。。。我试着这么做,但我也是一个初学者,现在没有时间,对不起。祝你好运

问题中的代码示例是否有帮助?有一个类的功能类似于带有滚动条的面板。

您希望得到什么结果?你不明白你的
draw
方法的哪一部分?@phineas:我很想知道,当我打开一个大小异常的图像时,我会有滚动条或类似的东西,我可以看到我的整个应用程序gui,不像我的第二个例子