I'm not sure how many people will be interested in this, but it's something I find useful given the small screen on the Q7. To set the default OS to launch all applications maximized, edit the file /home/user/.config/openbox/lxde-rc.xml

Find the </applications> tag (which marks the end of the applications section of the file) and just above it enter:
  Code:
<application class="*">
   <maximized>true</maximized>
</application>

Not that that is application, with no "s" on the end. So your file will looks something like:
  Code:
A bunch of stuff we don't care about

<applications>  <--this is the start of the applications section

A big bunch of example stuff on how this section works

<application class="*">            <--our new bit
   <maximized>true</maximized>     <--our new bit
</application>                     <--our new bit
</applications>   <--the end of the applications section


If you want to only make some applications maximized you can enter an application name where the * is. To take it even further you can do what I do and also remove the window border to give you even more screen. Note that if you do this you lose the maximize, minimize and close buttons, you can still do these things by holding the stylus on the app in the taskbar for a few seconds and a menu will appear. Anyway, to remove window borders as well you need your application section to look like:
  Code:
    <application class="*">
      <decor>no</decor>
      <maximized>true</maximized>
    </application>