Subversion Repositories Kolibri OS

Rev

Rev 9350 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9350 Rev 9351
Line 148... Line 148...
148
	if (streq(tag.get_value_of("http-equiv"), "refresh")) && (tag.get_value_of("content")) {
148
	if (streq(tag.get_value_of("http-equiv"), "refresh")) && (tag.get_value_of("content")) {
149
		if (tag.value = strstri(tag.value, "url")) strcpy(#redirect, tag.value);
149
		if (tag.value = strstri(tag.value, "url")) strcpy(#redirect, tag.value);
150
	}
150
	}
151
	if (streq(tag.get_value_of("name"), "application")) {
151
	if (streq(tag.get_value_of("name"), "application")) {
152
	    if (application_mode) {
152
	    if (application_mode) {
153
	        if (tag.get_value_of("left")) {
153
	        if (tag.get_number_of("left")) {
154
                MoveSize(atoi(tag.value),-1,-1,-1);
154
                MoveSize(tag.number,-1,-1,-1);
155
            }
155
            }
156
            if (tag.get_value_of("top")) {
156
            if (tag.get_number_of("top")) {
157
                MoveSize(-1,atoi(tag.value),-1,-1);
157
                MoveSize(-1,tag.number,-1,-1);
158
            }
158
            }
159
            if (tag.get_value_of("width")) {
159
            if (tag.get_number_of("width")) {
160
                MoveSize(-1,-1,atoi(tag.value),-1);
160
                MoveSize(-1,-1,tag.number,-1);
161
            }
161
            }
162
            if (tag.get_value_of("height")) {
162
            if (tag.get_number_of("height")) {
163
                MoveSize(-1,-1,-1,atoi(tag.value));
163
                MoveSize(-1,-1,-1,tag.number);
164
            }
164
            }
165
	    }
165
	    }
166
    }
166
    }
167
}
167
}