Eclipse-RCP视图未全屏显示

时间:2015-03-31 15:10:42

标签: swt eclipse-rcp

我正在使用RCP 3.x并尝试创建一个我想要完整并在左侧的布局。我尝试了很多组合,但似乎都没有。这是截图。 Error

以下是我用来创建此代码的代码段

public MonitorView(final Composite parent)
    {
        super(parent);
        setDisplayName(I18N("Visual Monitoring of iCommand"));
        setLayout(new GridLayout());
        final Composite composite=GUIToolkit.newComposite(parent, SWT.NONE, new GridData(SWT.TOP,SWT.LEFT,false,false,0,0));
        GridLayout layout=new GridLayout();
        composite.setLayout(layout);

        CreatePartControl(parent);

    }

    private void CreatePartControl(Composite parent) 
    {
        // TODO Auto-generated method stub
        final Composite c =new Composite(parent,SWT.NONE);
        final Canvas canvas=new Canvas(parent,SWT.NONE);
        Color red = display.getSystemColor(SWT.COLOR_RED);
        canvas.setBackground(red);
        c.addPaintListener(new PaintListener() {
            @Override 
            public void paintControl(PaintEvent event)
            {
                int offset_x=130;
                int offset_y=70;
                int j=0,i=0,n=3,x,y;

                DrawRoundedRectangle d= new DrawRoundedRectangle();
                //for loop for column 1.Placing elements column wise. 

                for(i=0;i<n;i++)
                { x=0;y=offset_y*j;
                  d.drawrectangle(event, x, y, j);
                  j++;
                  x=0;y=offset_y*j;
                  d.drawrectangle(event, x, y, j);
                  j++;
                }

            j=0;int flag=6;
            //for loop for drawing column 2
                for(i=0;i<n;i++)
                { 
                  x=offset_x; y=offset_y*j;
                  d.drawrectangle(event, x, y, flag);
                  j++;flag++;
                  x=offset_x;y=offset_y*j;
                  d.drawrectangle(event, x, y, flag);
                  flag++;
                  j++;
                }
            }
        });

    }


为什么视图从左侧开始,为什么画布仅从右侧变红..为什么矩形的背景也不是红色。

供参考。这是drawRoundedRectangle的代码。

void drawrectangle(PaintEvent event, int x,int y,int j)
    {
        event.gc.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));
        event.gc.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_GRAY)); 
        Font font = new Font(Display.getCurrent(),"Arial",font_size,SWT.BOLD | SWT.ITALIC); 
        event.gc.setFont(font);
        event.gc.drawRoundRectangle(initial_pos_x+x,initial_pos_y+y,width_of_rect,height_of_rect,arc_width,arc_height);
        event.gc.fillRoundRectangle(initial_pos_x+adjust_pos_x+x,initial_pos_y+adjust_pos_y+y,width_of_rect+adjust_width_x,height_of_rect+adjust_height_y,arc_width,arc_height);
        event.gc.drawText(Services_name.get(j), text_x+x,text_y+y);
    } 

[编辑]:改变之后@ greg449告诉这里是结果。没有意义为什么当我做出必要的逻辑改变时尺寸变小了

enter image description here

1 个答案:

答案 0 :(得分:1)

您正在使复合控件的父级错误,因此您最终会遇到多个复合材料。

首先:

   final Composite composite=GUIToolkit.newComposite(parent, SWT.NONE, new GridData(SWT.TOP,SWT.LEFT,false,false,0,0));
    GridLayout layout=new GridLayout();
    composite.setLayout(layout);

    CreatePartControl(parent);

您正在将parent传递给CreatePartControl,因此您没有使用composite,但会占用空间。

第二

private void CreatePartControl(Composite parent) 
{
    // TODO Auto-generated method stub
    final Composite c =new Composite(parent,SWT.NONE);
    final Canvas canvas=new Canvas(parent,SWT.NONE);

您创建了复合c,但后来使用parent作为Canvas的父级,因此ccanvas并排。

您还需要画布侦听器在画布上,因为这是您想要绘制的内容。