c++ plugins need help

hello to all
i am looking to add picture in the plugins i an add a text but i cannot add a photo picture image to it is there any one can help me
this is a part of the code i want to add the image in



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
eBibleMainWindow::eBibleMainWindow(): eWindow(1)
{
		// move our dialog to 100.100...
	cmove(ePoint(100, 100));
		// ...and give x and y dimensions.
	cresize(eSize(520, 376));
		// set a title.
	setText("Enigma Bible Lesson 1: Window");
	
	// create a label to show a text.
	label=new eLabel(this);
	// give a position
	label->move(ePoint(50, 50));
	// set the label dimensions
	label->resize(eSize(200, 100));
	// set the label text
	label->setText("Hello World !!");
	
}
Last edited on
Topic archived. No new replies allowed.