With TikZ, is it possible to split a node horizontally and vertically?
What I have so far is:
\documentclass[tikz, border=10pt]{standalone}
\usetikzlibrary{shapes}
\begin{document}
\begin{tikzpicture}[every node/.append style={draw, rounded corners, inner sep=10pt}]
\node [rectangle split, rectangle split horizontal, rectangle split parts=3]
{Services
\nodepart{two} Event Driven Framework
\nodepart{three} OS Adapter Layer};
\end{tikzpicture}
\end{document}
What I want is:
/----------+------------------------\
| | Event Driven Framework |
| Services +------------------------+
| | OS Adapter Layer |
\----------+------------------------/



picwith the required structure, if you plan to reuse that kind of "shape" – JLDiaz Oct 22 '15 at 09:46